diff options
Diffstat (limited to 'libjava/gnu/gcj/xlib/GC.java')
-rw-r--r-- | libjava/gnu/gcj/xlib/GC.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libjava/gnu/gcj/xlib/GC.java b/libjava/gnu/gcj/xlib/GC.java index da427c9..1a47cf6 100644 --- a/libjava/gnu/gcj/xlib/GC.java +++ b/libjava/gnu/gcj/xlib/GC.java @@ -132,6 +132,11 @@ public class GC implements Cloneable public native void clearArea(int x, int y, int w, int h, boolean exposures); + /** Draw a point using the current foreground color + * @param x The x coordinate at which to draw + * @param t The y coordinate at which to draw + */ + public native void drawPoint (int x, int y); public native void putImage(XImage image, int srcX, int srcY, |