Searched defs:gx1 (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) \
327 (((gx1) >= outerBounds.x1) && ((gy1) >= outerBounds.y1) && \
331 * Evaluates to true if the rectangle defined by gx1/gy1/gx2/gy2 intersects
334 #define INTERSECTS(gx1, gy1, gx2, gy2, bounds) \
335 ((bounds.x2 > (gx1)) && (bounds.y2 > (gy1)) && \
351 jint gx1, jint gy1, jint gx2, jint gy2,
360 if (isCachedDestValid && INSIDE(gx1, gy1, gx2, gy2, cachedDestBounds)) {
367 gx1 = agx1;
370 if (INTERSECTS(gx1, 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) \
693 (((gx1) >= outerBounds.x1) && ((gy1) >= outerBounds.y1) && \
697 * Evaluates to true if the rectangle defined by gx1/gy1/gx2/gy2 intersects
700 #define INTERSECTS(gx1, gy1, gx2, gy2, bounds) \
701 ((bounds.x2 > (gx1)) && (bounds.y2 > (gy1)) && \
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)) {
759 dx1 = gx1;
712 OGLTR_UpdateCachedDestination(OGLSDOps *dstOps, GlyphInfo *ginfo, jint gx1, jint gy1, jint gx2, jint gy2, jint glyphIndex, jint totalGlyphs) argument
[all...]

Completed in 46 milliseconds