Searched defs:y1 (Results 101 - 125 of 140) sorted by relevance

123456

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedChildProxyPeer.java264 public void flip(int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) { } argument
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsConfig.java448 int x1, int y1, int x2, int y2,
446 flip(X11ComponentPeer peer, Component target, VolatileImage xBackBuffer, int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java509 public void drawLine(int x1, int y1, int x2, int y2) { argument
514 " Drawing line: from " + pointToString(x1, y1) +
522 debugGraphics.drawLine(x1, y1, x2, y2);
531 graphics.drawLine(x1, y1, x2, y2);
537 graphics.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCFileDialog.java286 public void flip(int x1, int y1, int x2, int y2, FlipContents flipAction) { argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h117 int y1; member in struct:_DamageRect
H A DmultiVis.c84 short x1, x2, y1, y2; member in struct:__anon1017
454 - MAX( vis_reg->rects[rect].y1, bbox.y);
459 diff = bbox.y - vis_reg->rects[rect].y1;
460 srcRect_y = MAX( 0, diff) + (vis_reg->rects[rect].y1 - reg->y_rootrel - reg->border);
502 int32_t x1, y1; local
565 for (y1 = 0; y1 < srcRect_height; y1++) {
576 pixel = (int32_t) XGetPixel(ximage_ipm,dst_x+x1,dst_y+y1) ;
577 XPutPixel(ximage,dst_x+x1, dst_y+y1,(unsigne
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c225 jint x1, jint y1, jint x2, jint y2)
235 CLAMP_TO_SHORT(x1), CLAMP_TO_SHORT(y1),
497 jint x0, jint y0, jint x1, jint y1)
503 XDHD_ADD_POINT(dhnd, x1, y1);
222 Java_sun_java2d_x11_X11Renderer_XDrawLine(JNIEnv *env, jobject xr, jlong pXSData, jlong xgc, jint x1, jint y1, jint x2, jint y2) argument
496 storeLine(DrawHandler* hnd, jint x0, jint y0, jint x1, jint y1) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.cpp68 GETMAX(dst->y1, src->y1);
75 jint x1, jint y1, jint x2, jint y2)
79 GETMAX(bounds->y1, y1);
102 if (bounds->y1 < y) {
103 bounds->y1 = y;
117 GETMAX(dst->y1, src->y1 + dy);
121 GETMAX(src->y1, ds
74 SurfaceData_IntersectBoundsXYXY(SurfaceDataBounds *bounds, jint x1, jint y1, jint x2, jint y2) argument
[all...]
H A DD3DRenderQueue.cpp62 int x1, int y1, int x2, int y2)
70 J2dTraceLn4(J2D_TRACE_VERBOSE, " x1=%d y1=%d x2=%d y2=%d",
71 x1, y1, x2, y2);
121 if (y1 < 0) y1 = 0;
124 if (x2 <= x1 || y2 <= y1) {
129 srcRect.top = y1;
230 jint y1 = NEXT_INT(b); local
235 res = D3DRenderer_DrawLine(d3dc, x1, y1, x2, y2);
503 jint y1 local
61 D3DRQ_SwapBuffers(D3DPipelineManager *pMgr, D3DSDOps *d3dsdo, int x1, int y1, int x2, int y2) argument
702 jint y1 = NEXT_INT(b); local
[all...]
H A DD3DTextRenderer.cpp285 jfloat x1, y1, x2, y2; local
313 y1 = (jfloat)y;
315 y2 = y1 + ginfo->height;
317 return d3dc->pVCacher->DrawTexture(x1, y1, x2, y2,
327 (((gx1) >= outerBounds.x1) && ((gy1) >= outerBounds.y1) && \
336 (bounds.x1 < (gx2)) && (bounds.y1 < (gy2)))
375 dy1 = previousGlyphBounds.y1;
404 // cy1-cachedDestBounds.y1 == +yoffset from top of texture
406 // cy2-cachedDestBounds.y1 == +yoffset from top of texture
408 jint cdy1 = cy1-cachedDestBounds.y1;
[all...]
H A DD3DVertexCacher.cpp224 HRESULT D3DVertexCacher::DrawLine(int x1, int y1, int x2, int y2) argument
229 if (y1 == y2) {
231 fy1 = (float)y1+HV_FF1;
244 fy1 = (float)y1-SP_FF4;
252 if (y1 > y2) {
254 fy2 = (float)y1+HV_FF2;
256 fy1 = (float)y1+HV_FF3;
261 if (x1 > x2 && y1 > y2) {
267 fy2 = (float)y1;
268 } else if (x1 > x2 && y2 > y1) {
404 float x1, y1, x2, y2; local
431 DrawRect(int x1, int y1, int x2, int y2) argument
457 FillRect(int x1, int y1, int x2, int y2) argument
645 DrawTexture(float x1, float y1, float x2, float y2, float u1, float v1, float u2, float v2) argument
670 DrawTexture(float x1, float y1, float x2, float y2, float u11, float v11, float u12, float v12, float u21, float v21, float u22, float v22) argument
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java639 int x0, int y0, int x1, int y1)
643 for (int y = y0; y < y1; y++) {
636 check(AnnotatedRenderOp ar, boolean wasfill, int dataref[], int scanref, int offref, int datatst[], int scantst, int offtst, int x0, int y0, int x1, int y1) argument
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsgamma.c807 int y0, y1; local
819 y1 = LutTable[i+1];
821 if (y0 <= y1) { // Increasing
822 if (In >= y0 && In <= y1) return i;
825 if (y1 < y0) { // Decreasing
826 if (In >= y1 && In <= y0) return i;
835 y1 = LutTable[i+1];
837 if (y0 <= y1) { // Increasing
838 if (In >= y0 && In <= y1) return i;
841 if (y1 < y
854 cmsFloat64Number a = 0, b = 0, y, x1, y1, x2, y2; local
[all...]
H A Dcmsintrp.c193 cmsUInt16Number y1, y0; local
212 y1 = LutTable[cell0+1];
215 Output[0] = LinearInterp(rest, y0, y1);
225 cmsFloat32Number y1, y0; local
245 y1 = LutTable[cell1] ;
247 Output[0] = y0 + (y1 - y0) * rest;
289 cmsFloat32Number y1, y0; local
315 y1 = LutTable[cell1 + OutChan] ;
317 Output[OutChan] = y0 + (y1 - y0) * rest;
1065 cmsFloat32Number y1 local
1153 cmsFloat32Number y1 = Tmp2[i]; local
1240 cmsFloat32Number y1 = Tmp2[i]; local
1326 cmsFloat32Number y1 = Tmp2[i]; local
1411 cmsFloat32Number y1 = Tmp2[i]; local
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java110 public abstract void drawLine(int x0, int y0, int x1, int y1); argument
134 public abstract void processFixedLine(int x1, int y1, argument
553 * (x1, y1), (x2, y2) - fixed point coordinates of the endpoints
575 public void processFixedLine(int x1, int y1, int x2, int y2, argument
580 int c = ((x1 ^ x2) | (y1 ^ y2));
587 PROCESS_POINT(x1 + MDP_HALF_MULT, y1 + MDP_HALF_MULT,
593 if (x1 == x2 || y1 == y2) {
596 ry1 = y1 + MDP_HALF_MULT;
601 int dy = y2 - y1;
603 /* Floor of x1, y1, x
1359 ProcessLine(ProcessHandler hnd, float x1, float y1, float x2, float y2, int[] pixelInfo) argument
2027 processFixedLine(int x1, int y1, int x2, int y2, int[] pixelInfo, boolean checkBounds, boolean endSubPath) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DStroker.java258 final float y1 = cy + omy;
260 final float y2 = y1 + cv * omx;
267 emitCurveTo(x1, y1, x2, y2, x3, y3, x4, y4, rev);
289 // Put the intersection point of the lines (x0, y0) -> (x1, y1)
293 final float x1, final float y1,
299 float y10 = y1 - y0;
357 public void lineTo(float x1, float y1) { argument
359 float dy = y1 - cy0;
370 emitLineTo(x1 + mx, y1 + my);
373 emitLineTo(x1 - mx, y1
292 computeIntersection(final float x0, final float y0, final float x1, final float y1, final float x0p, final float y0p, final float x1p, final float y1p, final float[] m, int off) argument
454 emitLineTo(final float x1, final float y1) argument
458 emitLineTo(final float x1, final float y1, final boolean rev) argument
468 emitQuadTo(final float x0, final float y0, final float x1, final float y1, final float x2, final float y2, final boolean rev) argument
479 emitCurveTo(final float x0, final float y0, final float x1, final float y1, final float x2, final float y2, final float x3, final float y3, final boolean rev) argument
522 within(final float x1, final float y1, final float x2, final float y2, final float ERR) argument
533 getLineOffsets(float x1, float y1, float x2, float y2, float[] left, float[] right) argument
939 curveTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
1031 quadTo(float x1, float y1, float x2, float y2) argument
1139 pushCubic(float x0, float y0, float x1, float y1, float x2, float y2) argument
1153 pushQuad(float x0, float y0, float x1, float y1) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java151 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
154 * @param y1 the first point's <i>y</i> coordinate.
158 public void drawLine(int x1, int y1, int x2, int y2) { argument
168 deviceDrawLine(x1, y1, x2, y2, (Color) paint);
H A DPeekGraphics.java505 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
508 * @param y1 the first point's <i>y</i> coordinate.
513 public void drawLine(int x1, int y1, int x2, int y2) { argument
514 addStrokeShape(new Line2D.Float(x1, y1, x2, y2));
H A DProxyGraphics2D.java441 * <code>(x1,&nbsp;y1)</code> and <code>(x2,&nbsp;y2)</code>
444 * @param y1 the first point's <i>y</i> coordinate.
449 public void drawLine(int x1, int y1, int x2, int y2) { argument
450 mGraphics.drawLine(x1, y1, x2, y2);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c102 jint y1 = NEXT_INT(b); local
105 OGLRenderer_DrawLine(oglc, x1, y1, x2, y2);
365 jint y1 = NEXT_INT(b); local
368 OGLContext_SetRectClip(oglc, dstOps, x1, y1, x2, y2);
H A DOGLRenderer.c66 OGLRenderer_DrawLine(OGLContext *oglc, jint x1, jint y1, jint x2, jint y2) argument
74 if (y1 == y2) {
78 GLfloat fy = ((GLfloat)y1) + 0.2f;
89 GLfloat fy1 = (GLfloat)y1;
92 if (y1 > y2) {
101 GLfloat fy1 = (GLfloat)y1;
113 if (y1 < y2) {
322 jint y1 = *(spans++); local
325 GLRECT_BODY_XYXY(x1, y1, x2, y2);
H A DOGLTextRenderer.c654 jfloat x1, y1, x2, y2; local
676 y1 = (jfloat)y;
678 y2 = y1 + ginfo->height;
683 x1, y1, x2, y2);
693 (((gx1) >= outerBounds.x1) && ((gy1) >= outerBounds.y1) && \
702 (bounds.x1 < (gx2)) && (bounds.y1 < (gy2)))
729 dy1 = previousGlyphBounds.y1;
807 cachedDestBounds.y1 = dy1;
815 previousGlyphBounds.y1 = gy1;
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackendNative.java107 int x1, int y1, int x2, int y2,
123 int x1, int y1, int x2, int y2,
105 XRCreateLinearGradientPaintNative(float[] fractionsArray, short[] pixelsArray, int x1, int y1, int x2, int y2, int numStops, int repeat, int m00, int m01, int m02, int m10, int m11, int m12) argument
122 XRSetClipNative(long dst, int x1, int y1, int x2, int y2, Region clip, boolean isGC) argument
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.cpp165 ciObject* y1 = deps->at(i+1); local
166 if (x1 == y1) { // same subject; check the context
180 ciObject* y1 = deps->at(i+1); local
181 if (x0 == y0 && x1 == y1) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java496 public void flip(int x1, int y1, int x2, int y2, argument

Completed in 318 milliseconds

123456