only warn on lack of texture compression, some parts of levels might still work

This commit is contained in:
Alon Zakai 2012-06-16 10:26:53 -07:00
Родитель ca9c2d70f9
Коммит e6ec4c9620
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -114,7 +114,7 @@ var LibraryGL = {
var ext = Module.ctx.getExtension('WEBGL_compressed_texture_s3tc') ||
Module.ctx.getExtension('MOZ_WEBGL_compressed_texture_s3tc') ||
Module.ctx.getExtension('WEBKIT_WEBGL_compressed_texture_s3tc');
assert(ext, 'Failed to get texture compression WebGL extension');
if (!ext) Module.printErr('Failed to get texture compression WebGL extension, if compressed textures are used they will fail');
}
},