Lines Matching refs:GLfloat
31 draw_texture(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z, in draw_texture()
32 GLfloat width, GLfloat height) in draw_texture()
57 _mesa_DrawTexfOES(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) in _mesa_DrawTexfOES()
65 _mesa_DrawTexfvOES(const GLfloat *coords) in _mesa_DrawTexfvOES()
76 draw_texture(ctx, (GLfloat) x, (GLfloat) y, (GLfloat) z, in _mesa_DrawTexiOES()
77 (GLfloat) width, (GLfloat) height); in _mesa_DrawTexiOES()
85 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexivOES()
86 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexivOES()
94 draw_texture(ctx, (GLfloat) x, (GLfloat) y, (GLfloat) z, in _mesa_DrawTexsOES()
95 (GLfloat) width, (GLfloat) height); in _mesa_DrawTexsOES()
103 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexsvOES()
104 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexsvOES()
113 (GLfloat) x / 65536.0f, in _mesa_DrawTexx()
114 (GLfloat) y / 65536.0f, in _mesa_DrawTexx()
115 (GLfloat) z / 65536.0f, in _mesa_DrawTexx()
116 (GLfloat) width / 65536.0f, in _mesa_DrawTexx()
117 (GLfloat) height / 65536.0f); in _mesa_DrawTexx()
126 (GLfloat) coords[0] / 65536.0f, in _mesa_DrawTexxv()
127 (GLfloat) coords[1] / 65536.0f, in _mesa_DrawTexxv()
128 (GLfloat) coords[2] / 65536.0f, in _mesa_DrawTexxv()
129 (GLfloat) coords[3] / 65536.0f, in _mesa_DrawTexxv()
130 (GLfloat) coords[4] / 65536.0f); in _mesa_DrawTexxv()