Searched defs:gx2 (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DTextRenderer.cpp323 * Evaluates to true if the rectangle defined by gx1/gy1/gx2/gy2 is
326 #define INSIDE(gx1, gy1, gx2, gy2, outerBounds) \
328 ((gx2) <= outerBounds.x2) && ((gy2) <= outerBounds.y2))
331 * Evaluates to true if the rectangle defined by gx1/gy1/gx2/gy2 intersects
334 #define INTERSECTS(gx1, gy1, gx2, gy2, bounds) \
336 (bounds.x1 < (gx2)) && (bounds.y1 < (gy2)))
351 jint gx1, jint gy1, jint gx2, jint gy2,
360 if (isCachedDestValid && INSIDE(gx1, gy1, gx2, gy2, cachedDestBounds)) {
368 gx2 = agx2;
370 if (INTERSECTS(gx1, gy1, gx2, gy
349 D3DTR_UpdateCachedDestination(D3DContext *d3dc, D3DSDOps *dstOps, GlyphInfo *ginfo, jint gx1, jint gy1, jint gx2, jint gy2, jint agx1, jint agx2, jint glyphIndex, jint totalGlyphs) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLTextRenderer.c689 * Evaluates to true if the rectangle defined by gx1/gy1/gx2/gy2 is
692 #define INSIDE(gx1, gy1, gx2, gy2, outerBounds) \
694 ((gx2) <= outerBounds.x2) && ((gy2) <= outerBounds.y2))
697 * Evaluates to true if the rectangle defined by gx1/gy1/gx2/gy2 intersects
700 #define INTERSECTS(gx1, gy1, gx2, gy2, bounds) \
702 (bounds.x1 < (gx2)) && (bounds.y1 < (gy2)))
713 jint gx1, jint gy1, jint gx2, jint gy2,
719 if (isCachedDestValid && INSIDE(gx1, gy1, gx2, gy2, cachedDestBounds)) {
724 if (INTERSECTS(gx1, gy1, gx2, gy2, previousGlyphBounds)) {
816 previousGlyphBounds.x2 = gx2;
712 OGLTR_UpdateCachedDestination(OGLSDOps *dstOps, GlyphInfo *ginfo, jint gx1, jint gy1, jint gx2, jint gy2, jint glyphIndex, jint totalGlyphs) argument
[all...]

Completed in 34 milliseconds