modules/graphics/src/main/java/com/sun/glass/ui/monocle/MonoclePixels.java

Print this page

        

@@ -39,12 +39,12 @@
 
     MonoclePixels(int width, int height, IntBuffer data) {
         super(width, height, data);
     }
 
-    MonoclePixels(int width, int height, IntBuffer data, float scale) {
-        super(width, height, data, scale);
+    MonoclePixels(int width, int height, IntBuffer data, float scalex, float scaley) {
+        super(width, height, data, scalex, scaley);
     }
 
 
     private void _copyPixels(Buffer dst, Buffer src, int size) {
         throw new UnsupportedOperationException("not implemented");