diff options
author | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-11 03:50:06 +0000 |
---|---|---|
committer | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-11 03:50:06 +0000 |
commit | 6f9ae7ef9fdb15a29b653c2514a106b7f4258233 (patch) | |
tree | 62355195b3c655776a89cc23e92fac71c085af77 /gpu/GLES2 | |
parent | c3ca8c13bf5322d7afa80409690e8effeb4b05be (diff) | |
download | chromium_src-6f9ae7ef9fdb15a29b653c2514a106b7f4258233.zip chromium_src-6f9ae7ef9fdb15a29b653c2514a106b7f4258233.tar.gz chromium_src-6f9ae7ef9fdb15a29b653c2514a106b7f4258233.tar.bz2 |
Expose DXT3 and DXT5 through ANGLE
TEST=made demo and tested it.
BUG=91046
Review URL: http://codereview.chromium.org/7604027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96317 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/GLES2')
-rw-r--r-- | gpu/GLES2/gl2ext.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gpu/GLES2/gl2ext.h b/gpu/GLES2/gl2ext.h index c2bec34..68773a4 100644 --- a/gpu/GLES2/gl2ext.h +++ b/gpu/GLES2/gl2ext.h @@ -1034,6 +1034,18 @@ typedef void (GL_APIENTRYP PFNGLGETPROGRAMINFOCHROMIUM) (); #define GL_UNPACK_FLIP_Y_CHROMIUM 0x9240 #endif +/* GL_CHROMIUM_texture_compression_dxt3 */ +#ifndef GL_CHROMIUM_texture_compression_dxt3 +#define GL_CHROMIUM_texture_compression_dxt3 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#endif + +/* GL_CHROMIUM_texture_compression_dxt5 */ +#ifndef GL_CHROMIUM_texture_compression_dxt5 +#define GL_CHROMIUM_texture_compression_dxt5 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif + /* GL_ARB_robustness */ /* This extension is subsetted for the moment, incorporating only the * enums necessary to describe the reasons that we might encounter for |