Home | History | Annotate | Download | only in main

Lines Matching refs:GLfloat

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