Searched defs:doRect (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java73 native void doRect(SurfaceData sData, float x, float y, float width, float height, boolean isfill); method in class:CRenderer
86 surfaceData.doRect(this, sg2d, x, y, width, height, false);
109 surfaceData.doRect(this, sg2d, x, y, width, height, true);
611 void doRect(SurfaceData sData, float x, float y, float width, float height, boolean isfill) { method in class:CRenderer.Tracer
613 super.doRect(sData, x, y, width, height, isfill);
H A DOSXSurfaceData.java911 public void doRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) { method in class:OSXSurfaceData
912 // System.err.println("-- doRect x="+x+" y="+y+" w="+width+" h="+height+" isfill="+isfill+" paint="+sg2d.paint);
918 renderer.doRect(this, x, y, width, height, isfill);

Completed in 36 milliseconds