Searched defs:isfill (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java127 public synchronized void doPolygon(SunGraphics2D sg2d, int xpoints[], int ypoints[], int npoints, boolean ispolygon, boolean isfill) { argument
140 doShape(sg2d, (OSXSurfaceData) sg2d.getSurfaceData(), (Shape) gp, isfill);
151 void doShape(SunGraphics2D sg2d, OSXSurfaceData surfaceData, Shape shape, boolean isfill) { argument
183 if (isfill) {
H A DCRenderer.java73 native void doRect(SurfaceData sData, float x, float y, float width, float height, boolean isfill); argument
113 native void doRoundRect(SurfaceData sData, float x, float y, float width, float height, float arcW, float arcH, boolean isfill); argument
152 native void doOval(SurfaceData sData, float x, float y, float width, float height, boolean isfill); argument
191 native void doArc(SurfaceData sData, float x, float y, float width, float height, float angleStart, float angleExtent, int type, boolean isfill); argument
231 native void doPoly(SurfaceData sData, int[] xpoints, int[] ypoints, int npoints, boolean ispolygon, boolean isfill); argument
267 native void doShape(SurfaceData sData, int length, FloatBuffer coordinates, IntBuffer types, int windingRule, boolean isfill, boolean shouldApplyOffset); argument
269 void drawfillShape(SunGraphics2D sg2d, Shape s, boolean isfill, boolean shouldApplyOffset) { argument
283 if (isfill) {
296 if (isfill) {
311 if (isfill) {
611 doRect(SurfaceData sData, float x, float y, float width, float height, boolean isfill) argument
616 doRoundRect(SurfaceData sData, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) argument
621 doOval(SurfaceData sData, float x, float y, float width, float height, boolean isfill) argument
626 doArc(SurfaceData sData, float x, float y, float width, float height, float angleStart, float angleExtent, int type, boolean isfill) argument
631 doPoly(SurfaceData sData, int[] xpoints, int[] ypoints, int npoints, boolean ispolygon, boolean isfill) argument
636 doShape(SurfaceData sData, int length, FloatBuffer coordinates, IntBuffer types, int windingRule, boolean isfill, boolean shouldApplyOffset) argument
[all...]
H A DOSXSurfaceData.java220 static final int kRectParametersCount = kCommonParameterCount + 1; // kCommonParameterCount + isfill
222 // isfill
223 static final int kOvalParametersCount = kCommonParameterCount + 1; // kCommonParameterCount + isfill
225 // arcAngle + isfill + type
911 public void doRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) { argument
912 // System.err.println("-- doRect x="+x+" y="+y+" w="+width+" h="+height+" isfill="+isfill+" paint="+sg2d.paint);
913 if ((isfill) && (isCustomPaint(sg2d))) {
918 renderer.doRect(this, x, y, width, height, isfill);
921 public void doRoundRect(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float arcW, float arcH, boolean isfill) { argument
931 doOval(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, boolean isfill) argument
941 doArc(CRenderer renderer, SunGraphics2D sg2d, float x, float y, float width, float height, float startAngle, float arcAngle, int type, boolean isfill) argument
952 doPolygon(CRenderer renderer, SunGraphics2D sg2d, int xpoints[], int ypoints[], int npoints, boolean ispolygon, boolean isfill) argument
985 drawfillShape(CRenderer renderer, SunGraphics2D sg2d, GeneralPath gp, boolean isfill, boolean shouldApplyOffset) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java261 Path2D.Float p2df, boolean isfill);
263 void doShape(SunGraphics2D sg2d, Shape s, boolean isfill) { argument
283 transX, transY, p2df, isfill);
433 Path2D.Float p2df, boolean isfill)
435 GraphicsPrimitive.tracePrimitive(isfill
439 transX, transY, p2df, isfill);
258 doShape(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int transX, int transY, Path2D.Float p2df, boolean isfill) argument
430 doShape(GDIWindowSurfaceData sData, Region clip, Composite comp, int color, int transX, int transY, Path2D.Float p2df, boolean isfill) argument
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIRenderer.cpp692 jobject p2df, jboolean isfill)
696 " color=0x%x transx=%-4d transy=%-4d isfill=%-4d",
697 color, transX, transY, isfill);
718 HDC hdc = wsdo->GetDC(env, wsdo, (isfill ? BRUSH : PEN), NULL,
739 if (!isfill && !isempty) {
813 } else if (!isfill && !isempty && isapoint) {
825 if (!isfill && !isempty) {
835 if (isfill) {
687 Java_sun_java2d_windows_GDIRenderer_doShape(JNIEnv *env, jobject wr, jobject sData, jobject clip, jobject comp, jint color, jint transX, jint transY, jobject p2df, jboolean isfill) argument
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java487 boolean isfill = false;
493 isfill = false;
496 isfill = true;
525 test(ar, isfill);
532 public static void test(AnnotatedRenderOp ar, boolean isfill) { argument
535 if (isfill) {
542 check(imgref, imgtst, ar, isfill);

Completed in 67 milliseconds