Lines Matching refs:coords
69 _mesa_DrawTexfv(const GLfloat *coords) in _mesa_DrawTexfv() argument
72 draw_texture(ctx, coords[0], coords[1], coords[2], coords[3], coords[4]); in _mesa_DrawTexfv()
86 _mesa_DrawTexiv(const GLint *coords) in _mesa_DrawTexiv() argument
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()
104 _mesa_DrawTexsv(const GLshort *coords) in _mesa_DrawTexsv() argument
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()
126 _mesa_DrawTexxv(const GLfixed *coords) in _mesa_DrawTexxv() argument
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()