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

/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLSurfaceData.c144 GLint texMax; local
158 j2d_glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texMax);
159 texWidth = (width <= texMax) ? width : 0;
160 texHeight = (height <= texMax) ? height : 0;
165 j2d_glGetIntegerv(GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB, &texMax);
166 texWidth = (width <= texMax) ? width : 0;
167 texHeight = (height <= texMax) ? height : 0;
172 j2d_glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texMax);
173 texWidth = OGLSD_NextPowerOfTwo(width, texMax);
174 texHeight = OGLSD_NextPowerOfTwo(height, texMax);
[all...]

Completed in 679 milliseconds