浏览代码

Added support for s3tc compression on web

pull/66/head
Ray San 10 年前
父节点
当前提交
d1f099374c
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/rlgl.c

+ 2
- 1
src/rlgl.c 查看文件

@ -1008,7 +1008,8 @@ void rlglInit(void)
#endif #endif
// DDS texture compression support // DDS texture compression support
if (strcmp(extList[i], (const char *)"GL_EXT_texture_compression_s3tc") == 0) texCompDXTSupported = true;
if ((strcmp(extList[i], (const char *)"GL_EXT_texture_compression_s3tc") == 0) ||
(strcmp(extList[i], (const char *)"GL_WEBKIT_WEBGL_compressed_texture_s3tc") == 0)) texCompDXTSupported = true;
// ETC1 texture compression support // ETC1 texture compression support
if (strcmp(extList[i], (const char *)"GL_OES_compressed_ETC1_RGB8_texture") == 0) texCompETC1Supported = true; if (strcmp(extList[i], (const char *)"GL_OES_compressed_ETC1_RGB8_texture") == 0) texCompETC1Supported = true;

正在加载...
取消
保存