aboutsummaryrefslogtreecommitdiffstats
path: root/code/renderer/tr_types.h
diff options
context:
space:
mode:
authoricculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-06-13 02:28:51 +0000
committericculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-06-13 02:28:51 +0000
commit552953540cbb8065160c6670e8655b8d4279c286 (patch)
treec57a611f1f86b6f12e73b9dc52948e848edf945a /code/renderer/tr_types.h
parenta4d1572fe38e3f4dfbdc1f0ee0b203da099a4717 (diff)
downloadioquake3-aero-552953540cbb8065160c6670e8655b8d4279c286.tar.gz
ioquake3-aero-552953540cbb8065160c6670e8655b8d4279c286.zip
Added GL_EXT_texture_compression_s3tc support.
GL_S3_s3tc, which Quake 3 previously supported, is legacy. This new codepath is the common, vendor-neutral extension to get the same results. git-svn-id: svn://svn.icculus.org/quake3/trunk@1387 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/renderer/tr_types.h')
-rw-r--r--code/renderer/tr_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/code/renderer/tr_types.h b/code/renderer/tr_types.h
index 2a10342..50f9759 100644
--- a/code/renderer/tr_types.h
+++ b/code/renderer/tr_types.h
@@ -151,7 +151,8 @@ typedef enum {
*/
typedef enum {
TC_NONE,
- TC_S3TC
+ TC_S3TC, // this is for the GL_S3_s3tc extension.
+ TC_S3TC_ARB // this is for the GL_EXT_texture_compression_s3tc extension.
} textureCompression_t;
typedef enum {