Searched refs:ty2 (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLMaskBlit.c46 GLfloat tx1, ty1, tx2, ty2; local
82 ty2 = ((GLfloat)height) / OGLC_BLIT_TILE_SIZE;
88 j2d_glTexCoord2f(tx2, ty2); j2d_glVertex2i(dstx + width, dsty + height);
89 j2d_glTexCoord2f(tx1, ty2); j2d_glVertex2i(dstx, dsty + height);
H A DOGLVertexCache.h82 jfloat tx2, jfloat ty2,
H A DOGLVertexCache.c220 jfloat tx1, ty1, tx2, ty2; local
262 ty2 = ty1 + (((jfloat)height) / OGLVC_MASK_CACHE_HEIGHT_IN_TEXELS);
269 OGLVC_ADD_QUAD(tx1, ty1, tx2, ty2,
276 jfloat tx1, jfloat ty1, jfloat tx2, jfloat ty2,
285 OGLVC_ADD_QUAD(tx1, ty1, tx2, ty2,
275 OGLVertexCache_AddGlyphQuad(OGLContext *oglc, jfloat tx1, jfloat ty1, jfloat tx2, jfloat ty2, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) argument
H A DOGLBlitLoops.c111 GLdouble tx1, ty1, tx2, ty2; local
138 ty2 = (GLdouble)sy2;
144 ty2 = ((GLdouble)sy2) / srcOps->textureHeight;
156 j2d_glTexCoord2d(tx2, ty2); j2d_glVertex2d(dx2, dy2);
157 j2d_glTexCoord2d(tx1, ty2); j2d_glVertex2d(dx1, dy2);
264 GLdouble tx1, ty1, tx2, ty2; local
313 ty2 = ((GLdouble)sh) / th;
345 j2d_glTexCoord2d(tx2, ty2); j2d_glVertex2d(dx + dw, dy + dh);
346 j2d_glTexCoord2d(tx1, ty2); j2d_glVertex2d(dx, dy + dh);
360 j2d_glTexCoord2d(tx1, ty2); j2d_glVertex2
[all...]
H A DOGLTextRenderer.c682 cell->tx2, cell->ty2,
903 j2d_glMultiTexCoord2fARB(GL_TEXTURE0_ARB, cell->tx2, cell->ty2);
906 j2d_glMultiTexCoord2fARB(GL_TEXTURE0_ARB, cell->tx1, cell->ty2);
956 GLfloat tx1, ty1, tx2, ty2; local
1018 ty2 = ((GLfloat)sh) / OGLC_BLIT_TILE_SIZE;
1045 j2d_glMultiTexCoord2fARB(GL_TEXTURE0_ARB, tx2, ty2);
1048 j2d_glMultiTexCoord2fARB(GL_TEXTURE0_ARB, tx1, ty2);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DLineUtils.h59 jint tx1, ty1, tx2, ty2; \
74 SETORDERED(Y1, Y2, ty1, ty2, shorten); \
75 if (++ty2 < ty1) --ty2; /* integer overflow */ \
77 if (ty2 > (pRasInfo)->bounds.y2) ty2 = (pRasInfo)->bounds.y2; \
78 if (ty1 < ty2) { \
79 (*pLine)((pRasInfo), X1, ty1, pixel, ty2 - ty1, 0, \
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java825 long ty2 = ty1; ty2 += this.height;
831 if (ty2 > ry2) ty2 = ry2;
833 ty2 -= ty1;
834 // tx2,ty2 will never overflow (they will never be
838 if (ty2 < Integer.MIN_VALUE) ty2 = Integer.MIN_VALUE;
839 return new Rectangle(tx1, ty1, (int) tx2, (int) ty2);
867 long ty2
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DMaskBlit.cpp46 jfloat tx1, ty1, tx2, ty2; local
99 ty2 = ((jfloat)height) / D3DC_BLIT_TILE_SIZE;
103 tx1, ty1, tx2, ty2);
H A DD3DMaskCache.cpp103 float tx1, ty1, tx2, ty2; local
148 ty2 = ty1 + (((float)height) / D3D_MASK_CACHE_HEIGHT_IN_TEXELS);
156 tx1, ty1, tx2, ty2);
H A DD3DVertexCacher.h81 float tx1, float ty1, float tx2, float ty2);
H A DD3DBlitLoops.cpp407 float tx1, float ty1, float tx2, float ty2)
437 float ty2adj = ty2 - (1.0f / (2.0f * th));
478 tx1, ty1, tx2, ty2);
503 float tx1, ty1, tx2, ty2; local
533 ty2 = ((float)sy2) / th;
540 tx1, ty1, tx2, ty2);
566 double tx1, ty1, tx2, ty2; local
626 ty2 = ((double)sh) / th;
646 (float)tx1, (float)ty1, (float)tx2, (float)ty2);
1124 float ty2 local
402 D3DDrawTextureWithHint(D3DContext *d3dc, D3DTEXTUREFILTERTYPE hint, jint srcWidth, jint srcHeight, float tw, float th, jint sx1, jint sy1, jint sx2, jint sy2, float dx1, float dy1, float dx2, float dy2, float tx1, float ty1, float tx2, float ty2) argument
[all...]
H A DD3DTextRenderer.cpp319 cell->tx2, cell->ty2);
587 cell->tx2, cell->ty2,
638 jfloat tx1, ty1, tx2, ty2; local
720 ty2 = ((jfloat)sh) / D3DC_BLIT_TILE_SIZE;
744 tx1, ty1, tx2, ty2,
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.h70 jfloat ty2; member in struct:_CacheCellInfo
H A DAccelGlyphCache.c159 cellinfo->ty2 = cellinfo->ty1 + ((jfloat)h / cache->height);
239 cellinfo->ty2 = cellinfo->ty1 + ((jfloat)h / cache->height);
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c290 long ty1, ty2, tx1, tx2, cx, cy, cxw, cyh, local
326 ty2 = CLAMP_TO_SHORT(y + h - halfH - 1);
335 bottomH = (cyh - ty2) * 2;
358 if (ty1 <= ty2) {
360 cx, ty1, cx, ty2);
363 cxw, ty1, cxw, ty2);
697 long ty1, ty2, tx1, tx2, cx, cy, cxw, cyh, local
733 ty2 = CLAMP_TO_SHORT(y + h - halfH - 1);
742 bottomH = (cyh - ty2) * 2;
762 if (ty2 < cy
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageScanPoly.c67 mlib_d64 a2, b2, tx2, c2, d2, ty2; local
195 ty2 = (c * tx - a * ty);
406 dys = xl * c2 + ii * d2 + ty2;
418 dye = xr * c2 + ii * d2 + ty2;
492 dys = xl * c2 + ii * d2 + ty2;
504 dye = xr * c2 + ii * d2 + ty2;
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java1070 long ty2 = ty1 + r1.height;
1080 if (ty2 > ry2) ty2 = ry2;
1083 ty2 -= ty1;
1085 // tx2,ty2 will never overflow (they will never be
1089 if (ty2 < Integer.MIN_VALUE) ty2 = Integer.MIN_VALUE;
1091 r3.setBounds(tx1, ty1, (int) tx2, (int) ty2);

Completed in 49 milliseconds