Fix HTML5 CopyPixels

Using copyPixels were resulting in 

Uncaught TypeError: Cannot read property 'clearRect' of null ImageCanvasUtil.hx:102

Adding this line fix the problem
This commit is contained in:
starburst997
2014-12-04 16:22:53 -05:00
parent 0fdcccdbc1
commit 6c95c9ecbf

View File

@@ -252,6 +252,7 @@ class Image {
case CANVAS:
ImageCanvasUtil.convertToCanvas (this);
ImageCanvasUtil.copyPixels (this, sourceImage, sourceRect, destPoint, alphaImage, alphaPoint, mergeAlpha);
case DATA:
@@ -1196,4 +1197,4 @@ enum ImageChannel {
BLUE;
ALPHA;
}
}