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

/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dglext.h3103 GLAPI void APIENTRY glColorTableParameterfv (GLenum, GLenum, const GLfloat *);
3107 GLAPI void APIENTRY glGetColorTableParameterfv (GLenum, GLenum, GLfloat *);
3113 GLAPI void APIENTRY glConvolutionParameterf (GLenum, GLenum, GLfloat);
3114 GLAPI void APIENTRY glConvolutionParameterfv (GLenum, GLenum, const GLfloat *);
3120 GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum, GLenum, GLfloat *);
3125 GLAPI void APIENTRY glGetHistogramParameterfv (GLenum, GLenum, GLfloat *);
3128 GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum, GLenum, GLfloat *);
3142 typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params);
3146 typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params);
3152 typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat param
[all...]
H A Dgl.h164 typedef float GLfloat; /* single precision float */ typedef
780 GLAPI void GLAPIENTRY glClearIndex( GLfloat c );
800 GLAPI void GLAPIENTRY glPointSize( GLfloat size );
802 GLAPI void GLAPIENTRY glLineWidth( GLfloat width );
808 GLAPI void GLAPIENTRY glPolygonOffset( GLfloat factor, GLfloat units );
844 GLAPI void GLAPIENTRY glGetFloatv( GLenum pname, GLfloat *params );
889 GLAPI void GLAPIENTRY glClearAccum( GLfloat red, GLfloat green, GLfloat blu
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderer.c76 GLfloat fx1 = (GLfloat)x1;
77 GLfloat fx2 = (GLfloat)x2;
78 GLfloat fy = ((GLfloat)y1) + 0.2f;
81 GLfloat t = fx1; fx1 = fx2; fx2 = t;
88 GLfloat fx = ((GLfloat)x1) + 0.2f;
89 GLfloat fy
[all...]
H A DOGLFuncs.h52 typedef void (GLAPIENTRY *glBitmapType)(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
58 typedef void (GLAPIENTRY *glColor4fType)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
80 typedef void (GLAPIENTRY *glGetFloatvType)(GLenum pname, GLfloat *params);
94 typedef void (GLAPIENTRY *glPixelTransferfType)(GLenum pname, GLfloat para
[all...]
H A DOGLBufImgOps.c185 GLfloat xoff, yoff;
186 GLfloat edgeX, edgeY, minX, minY, maxX, maxY;
187 GLfloat kernelVals[MAX_KERNEL_SIZE*3];
242 maxX = ((GLfloat)srcOps->width) - edgeX;
243 maxY = ((GLfloat)srcOps->height) - edgeY;
246 maxX = (((GLfloat)srcOps->width) / srcOps->textureWidth) - edgeX;
247 maxY = (((GLfloat)srcOps->height) / srcOps->textureHeight) - edgeY;
429 GLfloat sf1 = NEXT_FLOAT(scaleFactors);
430 GLfloat sf2 = NEXT_FLOAT(scaleFactors);
431 GLfloat sf
[all...]
H A DOGLMaskBlit.c46 GLfloat tx1, ty1, tx2, ty2;
81 tx2 = ((GLfloat)width) / OGLC_BLIT_TILE_SIZE;
82 ty2 = ((GLfloat)height) / OGLC_BLIT_TILE_SIZE;
H A DOGLTextRenderer.c393 OGLTR_UpdateGammaLutTexture(GLuint texID, GLfloat *lut, jint size)
420 GLfloat lut[LUT_EDGE][LUT_EDGE][LUT_EDGE][3];
421 GLfloat invlut[LUT_EDGE][LUT_EDGE][LUT_EDGE][3];
431 GLfloat gz = (GLfloat)pow(zval, g);
432 GLfloat igz = (GLfloat)pow(zval, ig);
436 GLfloat gy = (GLfloat)pow(yval, g);
437 GLfloat ig
[all...]
H A DOGLPaints.c636 GLfloat scaleFactors[MAX_FRACTIONS-1];
637 GLfloat *fractions = (GLfloat *)pFractions;
650 GLfloat allZeros[MAX_FRACTIONS];
651 memset(allZeros, 0, sizeof(GLfloat)*MAX_FRACTIONS);
778 j2d_glUniform1fARB(loc, (GLfloat)(dstOps->yOffset + dstOps->height));
868 GLfloat yoff, denom, inv_denom;
907 yoff = (GLfloat)(dstOps->yOffset + dstOps->height);
H A DOGLBlitLoops.c56 GLfloat scalex, scaley;
60 scalex = ((GLfloat)(dx2-dx1)) / srcw;
61 scaley = ((GLfloat)(dy2-dy1)) / srch;
78 j2d_glBitmap(0, 0, 0, 0, (GLfloat)dx1, (GLfloat)-dy1, NULL);
178 GLfloat scalex, scaley;
180 scalex = ((GLfloat)(dx2-dx1)) / (sx2-sx1);
181 scaley = ((GLfloat)(dy2-dy1)) / (sy2-sy1);
203 j2d_glBitmap(0, 0, 0, 0, (GLfloat)dx1, (GLfloat)
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/J2D_GL/
H A Dglx.h511 extern void *glXAllocateMemoryNV(GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
513 typedef void * ( * PFNGLXALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/J2D_GL/
H A Dwglext.h497 extern void* WINAPI wglAllocateMemoryNV (GLsizei, GLfloat, GLfloat, GLfloat);
500 typedef void* (WINAPI * PFNWGLALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);

Completed in 96 milliseconds