Lines Matching refs:GLfloat
35 draw_texture(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z, in draw_texture()
36 GLfloat width, GLfloat height) in draw_texture()
61 _mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) in _mesa_DrawTexf()
69 _mesa_DrawTexfv(const GLfloat *coords) in _mesa_DrawTexfv()
80 draw_texture(ctx, (GLfloat) x, (GLfloat) y, (GLfloat) z, in _mesa_DrawTexi()
81 (GLfloat) width, (GLfloat) height); in _mesa_DrawTexi()
89 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexiv()
90 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexiv()
98 draw_texture(ctx, (GLfloat) x, (GLfloat) y, (GLfloat) z, in _mesa_DrawTexs()
99 (GLfloat) width, (GLfloat) height); in _mesa_DrawTexs()
107 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexsv()
108 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexsv()
117 (GLfloat) x / 65536.0f, in _mesa_DrawTexx()
118 (GLfloat) y / 65536.0f, in _mesa_DrawTexx()
119 (GLfloat) z / 65536.0f, in _mesa_DrawTexx()
120 (GLfloat) width / 65536.0f, in _mesa_DrawTexx()
121 (GLfloat) height / 65536.0f); in _mesa_DrawTexx()
130 (GLfloat) coords[0] / 65536.0f, in _mesa_DrawTexxv()
131 (GLfloat) coords[1] / 65536.0f, in _mesa_DrawTexxv()
132 (GLfloat) coords[2] / 65536.0f, in _mesa_DrawTexxv()
133 (GLfloat) coords[3] / 65536.0f, in _mesa_DrawTexxv()
134 (GLfloat) coords[4] / 65536.0f); in _mesa_DrawTexxv()