summaryrefslogtreecommitdiff
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-09-13 19:04:37 +0800
committerChia-I Wu <olvaffe@gmail.com>2009-09-14 11:51:47 +0800
commita98c282c7da646c9def246b2619124c51f8b4464 (patch)
treeed60f733d422a6a3e8adf05bbbf44d140d6e2d38 /src/mesa/main/dd.h
parentdc2ddb27d392e68aa2139b54e5d73bbdac19d5a9 (diff)
es: Proper support for FEATURE_OES_draw_texture.
Update default extensions and add DrawTex driver function.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index ce5e158626..afcab5bf2b 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -1060,6 +1060,16 @@ struct dd_function_table {
GLbitfield, GLuint64);
/*@}*/
#endif
+
+#if FEATURE_OES_draw_texture
+ /**
+ * \name GL_OES_draw_texture interface
+ */
+ /*@{*/
+ void (*DrawTex)(GLcontext *ctx, GLfloat x, GLfloat y, GLfloat z,
+ GLfloat width, GLfloat height);
+ /*@}*/
+#endif
};