diff options
author | Jamie Gennis <jgennis@google.com> | 2012-09-24 13:34:18 -0700 |
---|---|---|
committer | Jamie Gennis <jgennis@google.com> | 2012-09-24 13:45:33 -0700 |
commit | 3ff48e5e69955b37292446c0f2ac98e8238bdaca (patch) | |
tree | f90e45b7237e2eeba299db730d6261c02c09b0fe /opengl/include/EGL | |
parent | 09b11432b64d368dee7be69480ab54256058376a (diff) | |
download | frameworks_native-3ff48e5e69955b37292446c0f2ac98e8238bdaca.zip frameworks_native-3ff48e5e69955b37292446c0f2ac98e8238bdaca.tar.gz frameworks_native-3ff48e5e69955b37292446c0f2ac98e8238bdaca.tar.bz2 |
EGL: add the EGL_ANDROID_framebuffer_target enum
Change-Id: Id8b1b114e2a7a88956b857c63a0429e9b33fdb5c
Diffstat (limited to 'opengl/include/EGL')
-rw-r--r-- | opengl/include/EGL/eglext.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/opengl/include/EGL/eglext.h b/opengl/include/EGL/eglext.h index 3348039..8578874 100644 --- a/opengl/include/EGL/eglext.h +++ b/opengl/include/EGL/eglext.h @@ -304,6 +304,13 @@ EGLAPI EGLint EGLAPIENTRY eglWaitSyncANDROID(EGLDisplay dpy, EGLSyncKHR sync, EG typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCANDROID) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); #endif +/* EGL_ANDROID_framebuffer_target + */ +#ifndef EGL_ANDROID_framebuffer_target +#define EGL_ANDROID_framebuffer_target +#define EGL_FRAMEBUFFER_TARGET_ANDROID 0x3147 +#endif + #ifdef __cplusplus } #endif |