Searched defs:fillPolygon (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelFillPipe.java58 public void fillPolygon(SunGraphics2D sg, method in interface:PixelFillPipe
H A DPixelToShapeConverter.java128 public void fillPolygon(SunGraphics2D sg, method in class:PixelToShapeConverter
H A DLoopPipe.java157 public void fillPolygon(SunGraphics2D sg2d, method in class:LoopPipe
H A DNullPipe.java99 public void fillPolygon(SunGraphics2D sg, method in class:NullPipe
H A DBufferedRenderPipe.java260 public void fillPolygon(SunGraphics2D sg2d, method in class:BufferedRenderPipe
574 // delegate to fillPolygon() here, but most hardware accelerated
H A DValidatePipe.java144 public void fillPolygon(SunGraphics2D sg, method in class:ValidatePipe
148 sg.fillpipe.fillPolygon(sg, xPoints, yPoints, nPoints);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRRenderer.java131 public void fillPolygon(SunGraphics2D sg2d, method in class:XRRenderer
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java718 * @see java.awt.Graphics#fillPolygon
728 * @see java.awt.Graphics#fillPolygon
755 public abstract void fillPolygon(int xPoints[], int yPoints[], method in class:Graphics
767 public void fillPolygon(Polygon p) { method in class:Graphics
768 fillPolygon(p.xpoints, p.ypoints, p.npoints);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java123 public synchronized void fillPolygon(SunGraphics2D sg2d, int xpoints[], int ypoints[], int npoints) { method in class:CompositeCRenderer
H A DCRenderer.java262 public void fillPolygon(SunGraphics2D sg2d, int xpoints[], int ypoints[], int npoints) { method in class:CRenderer
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java245 public void fillPolygon(SunGraphics2D sg2d, method in class:GDIRenderer
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java195 public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints) { method in class:Test6657026.MyGraphics
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11Renderer.java277 public void fillPolygon(SunGraphics2D sg2d, method in class:X11Renderer
364 // Delegate to fillPolygon() if possible...
369 fillPolygon(sg2d, p.xpoints, p.ypoints, p.npoints);
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java673 * @see java.awt.Graphics#fillPolygon
685 * @see java.awt.Graphics#fillPolygon
712 public void fillPolygon(int xPoints[], int yPoints[], method in class:ProxyGraphics
714 g.fillPolygon(xPoints, yPoints, nPoints);
726 public void fillPolygon(Polygon p) { method in class:ProxyGraphics
727 g.fillPolygon(p);
H A DPathGraphics.java496 * @see java.awt.Graphics#fillPolygon
509 * @see java.awt.Graphics#fillPolygon
536 public void fillPolygon(int xPoints[], int yPoints[], method in class:PathGraphics
552 public void fillPolygon(Polygon p) { method in class:PathGraphics
H A DPeekGraphics.java781 * @see java.awt.Graphics#fillPolygon
816 public void fillPolygon(int xPoints[], int yPoints[], method in class:PeekGraphics
H A DProxyGraphics2D.java686 * @see java.awt.Graphics#fillPolygon
716 public void fillPolygon(int xPoints[], int yPoints[], method in class:ProxyGraphics2D
718 mGraphics.fillPolygon(xPoints, yPoints, nPoints);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java821 * Overrides <code>Graphics.fillPolygon</code>.
823 public void fillPolygon(int xPoints[], int yPoints[], int nPoints) { method in class:DebugGraphics
837 debugGraphics.fillPolygon(xPoints, yPoints, nPoints);
846 graphics.fillPolygon(xPoints, yPoints, nPoints);
852 graphics.fillPolygon(xPoints, yPoints, nPoints);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java2322 public void fillPolygon(int xPoints[], int yPoints[], int nPoints) { method in class:SunGraphics2D
2324 fillpipe.fillPolygon(this, xPoints, yPoints, nPoints);
2328 fillpipe.fillPolygon(this, xPoints, yPoints, nPoints);

Completed in 158 milliseconds