2003/10/01 03:08:32
[org.ibex.core.git] / src / org / xwt / plat / Win32.java
index f006190..ba99a8e 100644 (file)
@@ -264,6 +264,8 @@ public class Win32 extends GCJ {
         public native void setClip(int x, int y, int x2, int y2);
         public native void fillRect(int x, int y, int x2, int y2, int color);
         public native void drawPicture(Picture source, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2);
+        public native void drawPictureAlphaOnly(Picture source, int dx1, int dy1, int dx2, int dy2,
+                                                int sx1, int sy1, int sx2, int sy2, int rgb);
         public native void finalize();
         public void drawPicture(Picture source, int x, int y) {
             drawPicture(source, x, y, x + source.getWidth(), y + source.getHeight(), 0, 0, source.getWidth(), source.getHeight());