Home | History | Annotate | Download | only in main

Lines Matching refs:coords

69 _mesa_DrawTexfv(const GLfloat *coords)
72 draw_texture(ctx, coords[0], coords[1], coords[2], coords[3], coords[4]);
86 _mesa_DrawTexiv(const GLint *coords)
89 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1],
90 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]);
104 _mesa_DrawTexsv(const GLshort *coords)
107 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1],
108 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]);
126 _mesa_DrawTexxv(const GLfixed *coords)
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);