diff options
author | Mathias Agopian <mathias@google.com> | 2010-02-01 18:24:52 -0800 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2010-02-02 20:19:54 -0800 |
commit | d1f73a2fcae6481edf07763ca06c4f381ebe13c2 (patch) | |
tree | 50b5c2cfeeffcd03b0e664a8977b355ef53b9035 /include/private/opengles | |
parent | 2d65817f17d0bfabac3849892c8a0f959b8dadc1 (diff) | |
download | frameworks_base-d1f73a2fcae6481edf07763ca06c4f381ebe13c2.zip frameworks_base-d1f73a2fcae6481edf07763ca06c4f381ebe13c2.tar.gz frameworks_base-d1f73a2fcae6481edf07763ca06c4f381ebe13c2.tar.bz2 |
implement [2396050] Add ETC1 texture support to AGL
Diffstat (limited to 'include/private/opengles')
-rw-r--r-- | include/private/opengles/gl_context.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/private/opengles/gl_context.h b/include/private/opengles/gl_context.h index 26cde38..e0deba9 100644 --- a/include/private/opengles/gl_context.h +++ b/include/private/opengles/gl_context.h @@ -36,7 +36,12 @@ struct android_native_buffer_t; namespace android { -const unsigned int OGLES_NUM_COMPRESSED_TEXTURE_FORMATS = 10; + +const unsigned int OGLES_NUM_COMPRESSED_TEXTURE_FORMATS = 10 +#ifdef GL_OES_compressed_ETC1_RGB8_texture + + 1 +#endif + ; class EGLTextureObject; class EGLSurfaceManager; |