Searched defs:yPoints (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DDrawPolygons.java76 int xPoints[], int yPoints[],
109 int xPoints[], int yPoints[],
116 xPoints, yPoints, nPoints, numPolys,
75 DrawPolygons(SunGraphics2D sg2d, SurfaceData sData, int xPoints[], int yPoints[], int nPoints[], int numPolys, int transX, int transY, boolean close) argument
108 DrawPolygons(SunGraphics2D sg2d, SurfaceData sData, int xPoints[], int yPoints[], int nPoints[], int numPolys, int transX, int transY, boolean close) argument
H A DGeneralRenderer.java157 int xPoints[], int yPoints[], int off, int nPoints,
167 my = y1 = yPoints[off] + transy;
171 int y2 = yPoints[off] + transy;
769 int xPoints[], int yPoints[],
781 xPoints, yPoints, off, numpts,
914 int xPoints[], int yPoints[],
926 xPoints, yPoints, off, numpts,
156 doDrawPoly(SurfaceData sData, PixelWriter pw, int xPoints[], int yPoints[], int off, int nPoints, Region clip, int transx, int transy, boolean close) argument
768 DrawPolygons(SunGraphics2D sg2d, SurfaceData sData, int xPoints[], int yPoints[], int nPoints[], int numPolys, int transx, int transy, boolean close) argument
913 DrawPolygons(SunGraphics2D sg2d, SurfaceData sData, int xPoints[], int yPoints[], int nPoints[], int numPolys, int transx, int transy, boolean close) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelDrawPipe.java61 int xPoints[], int yPoints[],
65 int xPoints[], int yPoints[],
60 drawPolyline(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
64 drawPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
H A DPixelFillPipe.java59 int xPoints[], int yPoints[],
58 fillPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
H A DPixelToShapeConverter.java101 private Shape makePoly(int xPoints[], int yPoints[], argument
105 gp.moveTo(xPoints[0], yPoints[0]);
107 gp.lineTo(xPoints[i], yPoints[i]);
117 int xPoints[], int yPoints[],
119 outpipe.draw(sg, makePoly(xPoints, yPoints, nPoints, false));
123 int xPoints[], int yPoints[],
125 outpipe.draw(sg, makePoly(xPoints, yPoints, nPoints, true));
129 int xPoints[], int yPoints[],
131 outpipe.fill(sg, makePoly(xPoints, yPoints, nPoints, true));
116 drawPolyline(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
122 drawPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
128 fillPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
H A DLoopPipe.java101 int xPoints[], int yPoints[],
106 xPoints, yPoints,
113 int xPoints[], int yPoints[],
118 xPoints, yPoints,
158 int xPoints[], int yPoints[],
165 sr.appendPoly(xPoints, yPoints, nPoints, sg2d.transX, sg2d.transY);
100 drawPolyline(SunGraphics2D sg2d, int xPoints[], int yPoints[], int nPoints) argument
112 drawPolygon(SunGraphics2D sg2d, int xPoints[], int yPoints[], int nPoints) argument
157 fillPolygon(SunGraphics2D sg2d, int xPoints[], int yPoints[], int nPoints) argument
H A DNullPipe.java90 int xPoints[], int yPoints[],
95 int xPoints[], int yPoints[],
100 int xPoints[], int yPoints[],
89 drawPolyline(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
94 drawPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
99 fillPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
H A DShapeSpanIterator.java98 public native void appendPoly(int xPoints[], int yPoints[], int nPoints, argument
H A DBufferedRenderPipe.java186 final int[] xPoints, final int[] yPoints,
189 if (xPoints == null || yPoints == null) {
192 if (xPoints.length < nPoints || yPoints.length < nPoints) {
201 drawLine(sg2d, xPoints[0], yPoints[0], xPoints[1], yPoints[1]);
225 buf.put(yPoints, 0, nPoints);
231 drawPoly(xPoints, yPoints,
242 protected abstract void drawPoly(int[] xPoints, int[] yPoints, argument
247 int[] xPoints, int[] yPoints,
250 drawPoly(sg2d, xPoints, yPoints, nPoint
185 drawPoly(final SunGraphics2D sg2d, final int[] xPoints, final int[] yPoints, final int nPoints, final boolean isClosed) argument
246 drawPolyline(SunGraphics2D sg2d, int[] xPoints, int[] yPoints, int nPoints) argument
253 drawPolygon(SunGraphics2D sg2d, int[] xPoints, int[] yPoints, int nPoints) argument
260 fillPolygon(SunGraphics2D sg2d, int[] xPoints, int[] yPoints, int nPoints) argument
[all...]
H A DValidatePipe.java129 int xPoints[], int yPoints[],
132 sg.drawpipe.drawPolyline(sg, xPoints, yPoints, nPoints);
137 int xPoints[], int yPoints[],
140 sg.drawpipe.drawPolygon(sg, xPoints, yPoints, nPoints);
145 int xPoints[], int yPoints[],
148 sg.fillpipe.fillPolygon(sg, xPoints, yPoints, nPoints);
128 drawPolyline(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
136 drawPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
144 fillPolygon(SunGraphics2D sg, int xPoints[], int yPoints[], int nPoints) argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DDiagramConnectionWidget.java67 private int[] yPoints; field in class:DiagramConnectionWidget
120 yPoints = new int[pointCount];
133 this.yPoints[i] = curY;
178 g.drawPolyline(xPoints, yPoints, pointCount);
183 int y = yPoints[i];
190 int yOff = yPoints[yPoints.length - 2] - yPoints[yPoints.length - 1];
191 if (xOff == 0 && yOff == 0 && yPoints
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DRenderer.java103 protected native void drawPoly(int[] xPoints, int[] yPoints, argument
163 int[] xPoints, int[] yPoints,
167 d3dr.drawPoly(sg2d, xPoints, yPoints, nPoints, isClosed);
162 drawPoly(SunGraphics2D sg2d, int[] xPoints, int[] yPoints, int nPoints, boolean isClosed) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderer.cpp73 jint *xPoints, jint *yPoints)
77 if (d3dc == NULL || xPoints == NULL || yPoints == NULL) {
79 "D3DRenderer_DrawPoly: d3dc, xPoints or yPoints is NULL");
85 xPoints, yPoints);
364 jint *xPoints, *yPoints; local
370 yPoints = (jint *)env->GetPrimitiveArrayCritical(ypointsArray, NULL);
371 if (yPoints != NULL) {
377 xPoints, yPoints);
384 env->ReleasePrimitiveArrayCritical(ypointsArray, yPoints, JNI_ABORT);
70 D3DRenderer_DrawPoly(D3DContext *d3dc, jint nPoints, jboolean isClosed, jint transX, jint transY, jint *xPoints, jint *yPoints) argument
H A DD3DRenderQueue.cpp255 jint *yPoints = ((jint *)b) + nPoints; local
259 xPoints, yPoints);
H A DD3DVertexCacher.cpp308 jint *xPoints, jint *yPoints)
312 jfloat my = (jfloat)yPoints[0];
321 yPoints[nPoints - 1] == yPoints[0])
337 jfloat y = (jfloat)yPoints[i];
362 my = yPoints[nPoints-1] + transY +SP_FF4;
306 DrawPoly(jint nPoints, jboolean isClosed, jint transX, jint transY, jint *xPoints, jint *yPoints) argument
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLRenderer.java103 protected native void drawPoly(int[] xPoints, int[] yPoints, argument
162 int[] xPoints, int[] yPoints,
166 oglr.drawPoly(sg2d, xPoints, yPoints, nPoints, isClosed);
161 drawPoly(SunGraphics2D sg2d, int[] xPoints, int[] yPoints, int nPoints, boolean isClosed) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics.java694 * @param yPoints an array of <i>y</i> points
699 public abstract void drawPolyline(int xPoints[], int yPoints[], argument
710 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
711 * to <code>(xPoints[i],&nbsp;yPoints[i])</code>, for
716 * @param yPoints a an array of <code>y</code> coordinates.
721 public abstract void drawPolygon(int xPoints[], int yPoints[], argument
742 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
743 * to <code>(xPoints[i],&nbsp;yPoints[i])</code>, for
751 * @param yPoints a an array of <code>y</code> coordinates.
755 public abstract void fillPolygon(int xPoints[], int yPoints[], argument
[all...]
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java187 public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints) { argument
191 public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints) { argument
195 public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints) { argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java647 * @param yPoints an array of <i>y</i> points
652 public void drawPolyline(int xPoints[], int yPoints[], argument
654 g.drawPolyline(xPoints, yPoints, nPoints);
665 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
666 * to <code>(xPoints[i],&nbsp;yPoints[i])</code>, for
671 * @param yPoints a an array of <code>y</code> coordinates.
676 public void drawPolygon(int xPoints[], int yPoints[], argument
678 g.drawPolygon(xPoints, yPoints, nPoints);
699 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
700 * to <code>(xPoints[i],&nbsp;yPoints[
712 fillPolygon(int xPoints[], int yPoints[], int nPoints) argument
[all...]
H A DPathGraphics.java453 * @param yPoints an array of <i>y</i> points
458 public void drawPolyline(int xPoints[], int yPoints[], argument
467 fromY = yPoints[0];
470 toY = yPoints[i];
488 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
489 * to <code>(xPoints[i],&nbsp;yPoints[i])</code>, for
494 * @param yPoints a an array of <code>y</code> coordinates.
499 public void drawPolygon(int xPoints[], int yPoints[], argument
502 draw(new Polygon(xPoints, yPoints, nPoints));
523 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[
536 fillPolygon(int xPoints[], int yPoints[], int nPoints) argument
[all...]
H A DPeekGraphics.java745 * @param yPoints an array of <i>y</i> points
750 public void drawPolyline(int xPoints[], int yPoints[], argument
754 int y = yPoints[0];
757 drawLine(x, y, xPoints[i], yPoints[i]);
759 y = yPoints[i];
773 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
774 * to <code>(xPoints[i],&nbsp;yPoints[i])</code>, for
779 * @param yPoints a an array of <code>y</code> coordinates.
785 public void drawPolygon(int xPoints[], int yPoints[], argument
788 drawPolyline(xPoints, yPoints, nPoint
816 fillPolygon(int xPoints[], int yPoints[], int nPoints) argument
[all...]
H A DProxyGraphics2D.java660 * @param yPoints an array of <i>y</i> points
665 public void drawPolyline(int xPoints[], int yPoints[], argument
667 mGraphics.drawPolyline(xPoints, yPoints, nPoints);
678 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
679 * to <code>(xPoints[i],&nbsp;yPoints[i])</code>, for
684 * @param yPoints a an array of <code>y</code> coordinates.
690 public void drawPolygon(int xPoints[], int yPoints[], argument
692 mGraphics.drawPolygon(xPoints, yPoints, nPoints);
702 * <code>(xPoints[i&nbsp;-&nbsp;1],&nbsp;yPoints[i&nbsp;-&nbsp;1])</code>
703 * to <code>(xPoints[i],&nbsp;yPoints[
716 fillPolygon(int xPoints[], int yPoints[], int nPoints) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java753 public void drawPolyline(int xPoints[], int yPoints[], int nPoints) { argument
761 " Y's: " + yPoints);
767 debugGraphics.drawPolyline(xPoints, yPoints, nPoints);
776 graphics.drawPolyline(xPoints, yPoints, nPoints);
782 graphics.drawPolyline(xPoints, yPoints, nPoints);
788 public void drawPolygon(int xPoints[], int yPoints[], int nPoints) { argument
796 " Y's: " + yPoints);
802 debugGraphics.drawPolygon(xPoints, yPoints, nPoints);
811 graphics.drawPolygon(xPoints, yPoints, nPoints);
817 graphics.drawPolygon(xPoints, yPoints, nPoint
823 fillPolygon(int xPoints[], int yPoints[], int nPoints) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c124 jint *yPoints = ((jint *)b) + nPoints; local
127 xPoints, yPoints);
H A DOGLRenderer.c172 jint *xPoints, jint *yPoints)
180 if (xPoints == NULL || yPoints == NULL) {
192 my = yPoints[0];
197 jint y = yPoints[i];
208 yPoints[nPoints-1] != my))
226 my = yPoints[nPoints-1] + transY;
242 jint *xPoints, *yPoints; local
249 yPoints = (jint *)
251 if (yPoints != NULL) {
257 xPoints, yPoints);
169 OGLRenderer_DrawPoly(OGLContext *oglc, jint nPoints, jint isClosed, jint transX, jint transY, jint *xPoints, jint *yPoints) argument
[all...]

Completed in 194 milliseconds

12