Remove testing code

This commit is contained in:
Joshua Granick
2014-06-26 12:16:25 -07:00
parent eff408f14d
commit 594b62c2e2

View File

@@ -57,7 +57,6 @@ class Image {
__canvas.width = width;
__canvas.height = height;
__context.drawImage (data, 0, 0);
Browser.document.body.appendChild (__canvas);
var pixels = __context.getImageData (0, 0, width, height);
__bytes = new UInt8Array (pixels.data);
@@ -92,4 +91,4 @@ typedef ImageData = js.html.Image;
typedef ImageData = flash.display.BitmapData;
#else
typedef ImageData = UInt8Array;
#end
#end