modules/graphics/src/main/java/com/sun/glass/ui/gtk/GtkPixels.java

Print this page

        

@@ -37,12 +37,12 @@
 
     public GtkPixels(int width, int height, IntBuffer data) {
         super(width, height, data);
     }
 
-    public GtkPixels(int width, int height, IntBuffer data, float scale) {
-        super(width, height, data, scale);
+    public GtkPixels(int width, int height, IntBuffer data, float scalex, float scaley) {
+        super(width, height, data, scalex, scaley);
     }
 
     @Override
     protected void _fillDirectByteBuffer(ByteBuffer bb) {
         // Taken from MacPixels