|
@@ -166,7 +166,7 @@ class BitmapData {
|
|
r.x = x;
|
|
r.x = x;
|
|
r.y = y;
|
|
r.y = y;
|
|
bmp.draw(src.bmp, m, null, flash.display.BlendMode.SCREEN, r, false);
|
|
bmp.draw(src.bmp, m, null, flash.display.BlendMode.SCREEN, r, false);
|
|
- case SoftAdd:
|
|
|
|
|
|
+ case SoftAdd, BlendAdd:
|
|
throw "BlendMode not supported";
|
|
throw "BlendMode not supported";
|
|
}
|
|
}
|
|
#else
|
|
#else
|
|
@@ -192,7 +192,7 @@ class BitmapData {
|
|
flash.display.BlendMode.MULTIPLY;
|
|
flash.display.BlendMode.MULTIPLY;
|
|
case Screen:
|
|
case Screen:
|
|
flash.display.BlendMode.SCREEN;
|
|
flash.display.BlendMode.SCREEN;
|
|
- case SoftAdd:
|
|
|
|
|
|
+ case SoftAdd, BlendAdd:
|
|
throw "BlendMode not supported";
|
|
throw "BlendMode not supported";
|
|
}
|
|
}
|
|
|
|
|