Searched refs:rgbOrder (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DGlyphCache.cpp172 D3DGlyphCache::CheckGlyphCacheByteOrder(jboolean rgbOrder) argument
182 if (rgbOrder != lastRGBOrder) {
186 lastRGBOrder = rgbOrder;
188 tileFormat = rgbOrder ? TILEFMT_3BYTE_RGB : TILEFMT_3BYTE_BGR;
H A DD3DGlyphCache.h61 HRESULT CheckGlyphCacheByteOrder(jboolean rgbOrder);
79 * This value tracks the previous LCD rgbOrder setting, so if the rgbOrder
H A DD3DTextRenderer.h91 jboolean subPixPos, jboolean rgbOrder,
H A DD3DTextRenderer.cpp520 jboolean rgbOrder, jint contrast)
540 pLCDGCache->CheckGlyphCacheByteOrder(rgbOrder);
636 jboolean rgbOrder, jint contrast)
647 TileFormat tileFormat = rgbOrder ? TILEFMT_3BYTE_RGB : TILEFMT_3BYTE_BGR;
763 jboolean subPixPos, jboolean rgbOrder, jint lcdContrast,
847 rgbOrder, lcdContrast);
852 rgbOrder, lcdContrast);
869 jboolean subPixPos, jboolean rgbOrder, jint lcdContrast,
889 subPixPos, rgbOrder, lcdContrast,
898 subPixPos, rgbOrder, lcdContras
517 D3DTR_DrawLCDGlyphViaCache(D3DContext *d3dc, D3DSDOps *dstOps, GlyphInfo *ginfo, jint x, jint y, jint glyphIndex, jint totalGlyphs, jboolean rgbOrder, jint contrast) argument
633 D3DTR_DrawLCDGlyphNoCache(D3DContext *d3dc, D3DSDOps *dstOps, GlyphInfo *ginfo, jint x, jint y, jint rowBytesOffset, jboolean rgbOrder, jint contrast) argument
761 D3DTR_DrawGlyphList(D3DContext *d3dc, D3DSDOps *dstOps, jint totalGlyphs, jboolean usePositions, jboolean subPixPos, jboolean rgbOrder, jint lcdContrast, jfloat glyphListOrigX, jfloat glyphListOrigY, unsigned char *images, unsigned char *positions) argument
866 Java_sun_java2d_d3d_D3DTextRenderer_drawGlyphList(JNIEnv *env, jobject self, jint numGlyphs, jboolean usePositions, jboolean subPixPos, jboolean rgbOrder, jint lcdContrast, jfloat glyphListOrigX, jfloat glyphListOrigY, jlongArray imgArray, jfloatArray posArray) argument
[all...]
H A DD3DRenderQueue.cpp381 jboolean rgbOrder = EXTRACT_BOOLEAN(packedParams, local
397 subPixPos, rgbOrder, lcdContrast,
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLTextRenderer.h52 jboolean subPixPos, jboolean rgbOrder,
H A DOGLTextRenderer.c118 * This value tracks the previous LCD rgbOrder setting, so if the rgbOrder
239 OGLTR_AddToGlyphCache(GlyphInfo *glyph, jboolean rgbOrder) argument
251 pixelFormat = rgbOrder ? GL_RGB : GL_BGR;
824 jboolean rgbOrder, jint contrast)
841 if (rgbOrder != lastRGBOrder) {
845 lastRGBOrder = rgbOrder;
867 OGLTR_AddToGlyphCache(ginfo, rgbOrder);
954 jboolean rgbOrder, jint contrast)
963 GLenum pixelFormat = rgbOrder
821 OGLTR_DrawLCDGlyphViaCache(OGLContext *oglc, OGLSDOps *dstOps, GlyphInfo *ginfo, jint x, jint y, jint glyphIndex, jint totalGlyphs, jboolean rgbOrder, jint contrast) argument
951 OGLTR_DrawLCDGlyphNoCache(OGLContext *oglc, OGLSDOps *dstOps, GlyphInfo *ginfo, jint x, jint y, jint rowBytesOffset, jboolean rgbOrder, jint contrast) argument
1063 OGLTR_DrawGlyphList(JNIEnv *env, OGLContext *oglc, OGLSDOps *dstOps, jint totalGlyphs, jboolean usePositions, jboolean subPixPos, jboolean rgbOrder, jint lcdContrast, jfloat glyphListOrigX, jfloat glyphListOrigY, unsigned char *images, unsigned char *positions) argument
1166 Java_sun_java2d_opengl_OGLTextRenderer_drawGlyphList(JNIEnv *env, jobject self, jint numGlyphs, jboolean usePositions, jboolean subPixPos, jboolean rgbOrder, jint lcdContrast, jfloat glyphListOrigX, jfloat glyphListOrigY, jlongArray imgArray, jfloatArray posArray) argument
[all...]
H A DOGLRenderQueue.c245 jboolean rgbOrder = EXTRACT_BOOLEAN(packedParams, local
261 subPixPos, rgbOrder, lcdContrast,
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DTextRenderer.java43 boolean subPixPos, boolean rgbOrder,
42 drawGlyphList(int numGlyphs, boolean usePositions, boolean subPixPos, boolean rgbOrder, int lcdContrast, float glOrigX, float glOrigY, long[] images, float[] positions) argument
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLTextRenderer.java43 boolean subPixPos, boolean rgbOrder,
42 drawGlyphList(int numGlyphs, boolean usePositions, boolean subPixPos, boolean rgbOrder, int lcdContrast, float glOrigX, float glOrigY, long[] images, float[] positions) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DBufferedTextPipe.java158 boolean subPixPos, boolean rgbOrder,
157 drawGlyphList(int numGlyphs, boolean usePositions, boolean subPixPos, boolean rgbOrder, int lcdContrast, float glOrigX, float glOrigY, long[] images, float[] positions) argument
/openjdk7/jdk/src/share/native/sun/font/
H A DDrawGlyphList.c238 jboolean rgbOrder, int contrast,
292 clipRight, clipBottom, (jint)rgbOrder,
370 jboolean rgbOrder; local
384 rgbOrder = (*env)->GetBooleanField(env,glyphlist, sunFontIDs.lcdRGBOrder);
386 rgbOrder, contrast,
235 drawGlyphListLCD(JNIEnv *env, jobject self, jobject sg2d, jobject sData, GlyphBlitVector *gbv, jint pixel, jint color, jboolean rgbOrder, int contrast, NativePrimitive *pPrim, DrawGlyphListLCDFunc *func) argument
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DGraphicsPrimitiveMgr.h301 * rgbOrder is a jint rather than a jboolean so that this typedef matches
312 jint rgbOrder,
H A DLoopMacros.h1801 if (rgbOrder) { \
1846 if (rgbOrder) { \
1893 jint rgbOrder, \

Completed in 279 milliseconds