diff options
author | Kristian Høgsberg <[email protected]> | 2010-02-11 17:42:30 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-02-24 13:38:56 -0500 |
commit | d1dc5b124e133379be5bb57b68733c09c0e04f71 (patch) | |
tree | a6e8c1c0ddad297a8996fcbeab53e90bd90da82c /src/mesa/main/dd.h | |
parent | 07b07b4d723394c82f7ba915c1cba620b307013d (diff) |
core: Implement GL_OES_EGL_image entry points
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index d98a14e09c4..079e44bb955 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1035,6 +1035,17 @@ struct dd_function_table { GLfloat width, GLfloat height); /*@}*/ #endif + +#if FEATURE_OES_EGL_image + void (*EGLImageTargetTexture2D)(GLcontext *ctx, GLenum target, + struct gl_texture_object *texObj, + struct gl_texture_image *texImage, + GLeglImageOES image_handle); + void (*EGLImageTargetRenderbufferStorage)(GLcontext *ctx, + struct gl_renderbuffer *rb, + void *image_handle); +#endif + }; |