aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVladimir Vukicevic <vladimir@pobox.com>2014-02-12 09:43:06 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-03-05 14:16:17 -0800
commit7442be35d2bd1ad20e54397a85f5c2a5bd606c89 (patch)
tree28ffe7b4a4b037e7be11abb0095706a631f5dfa7 /src
parent5774e5d0cff190488bb9eec61d3aaa68d4450f21 (diff)
Add EXT_shader_texture_lod to trivially supported extensions
Diffstat (limited to 'src')
-rw-r--r--src/library_gl.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/library_gl.js b/src/library_gl.js
index d797cbb4..851b01b1 100644
--- a/src/library_gl.js
+++ b/src/library_gl.js
@@ -631,7 +631,7 @@ var LibraryGL = {
GLctx.getExtension('WEBKIT_EXT_texture_filter_anisotropic');
GL.floatExt = GLctx.getExtension('OES_texture_float');
-
+
// Extension available from Firefox 26 and Google Chrome 30
GL.instancedArraysExt = GLctx.getExtension('ANGLE_instanced_arrays');
@@ -648,7 +648,8 @@ var LibraryGL = {
"OES_element_index_uint", "EXT_texture_filter_anisotropic", "ANGLE_instanced_arrays",
"OES_texture_float_linear", "OES_texture_half_float_linear", "WEBGL_compressed_texture_atc",
"WEBGL_compressed_texture_pvrtc", "EXT_color_buffer_half_float", "WEBGL_color_buffer_float",
- "EXT_frag_depth", "EXT_sRGB", "WEBGL_draw_buffers", "WEBGL_shared_resources" ];
+ "EXT_frag_depth", "EXT_sRGB", "WEBGL_draw_buffers", "WEBGL_shared_resources",
+ "EXT_shader_texture_lod" ];
function shouldEnableAutomatically(extension) {
for(var i in automaticallyEnabledExtensions) {