diff options
author | Chia-I Wu <[email protected]> | 2009-09-22 15:00:24 +0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-11-05 20:04:20 -0700 |
commit | 34064756a5e2c8952c9de26eaebafddabd562540 (patch) | |
tree | afb8aa9358db033b672db8b69f7dabbb4ec800a1 /src/mesa/main/dd.h | |
parent | bfa66bd6f941920cf32ce79fb103c3755b4dd8fb (diff) |
mesa/es: Add support for GL_OES_draw_texture.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 99f2cad4028..0488a693b2b 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1046,6 +1046,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 }; |