|
@@ -223,16 +223,19 @@ VERTEX_SHADER_CODE
|
|
|
#define textureCubeLod(img, coord, lod) textureCubeLodEXT(img, coord, lod)
|
|
|
#endif
|
|
|
|
|
|
+#endif
|
|
|
+
|
|
|
#ifdef GL_ARB_shader_texture_lod
|
|
|
#extension GL_ARB_shader_texture_lod : enable
|
|
|
#endif
|
|
|
|
|
|
+
|
|
|
#if !defined(GL_EXT_shader_texture_lod) && !defined(GL_ARB_shader_texture_lod)
|
|
|
#define texture2DLod(img, coord, lod) texture2D(img, coord, lod)
|
|
|
#define textureCubeLod(img, coord, lod) textureCube(img, coord, lod)
|
|
|
#endif
|
|
|
|
|
|
-#endif
|
|
|
+
|
|
|
|
|
|
|
|
|
#ifdef USE_GLES_OVER_GL
|