Lines Matching refs:height
36 GLfloat width, GLfloat height)
43 if (width <= 0.0f || height <= 0.0f) {
44 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTex(width or height <= 0)");
54 ctx->Driver.DrawTex(ctx, x, y, z, width, height);
61 _mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height)
64 draw_texture(ctx, x, y, z, width, height);
77 _mesa_DrawTexi(GLint x, GLint y, GLint z, GLint width, GLint height)
81 (GLfloat) width, (GLfloat) height);
95 _mesa_DrawTexs(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height)
99 (GLfloat) width, (GLfloat) height);
113 _mesa_DrawTexx(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height)
121 (GLfloat) height / 65536.0f);