Ver código fonte

remove unneeded checks

Johnny Cena 3 semanas atrás
pai
commit
a99649b455

+ 1 - 2
examples/models/resources/shaders/glsl100/voxel_lighting.fs

@@ -1,7 +1,6 @@
 #version 100
-#ifdef GL_ES
+
 precision mediump float;
-#endif
 
 // Input from vertex shader
 varying vec3 fragPosition;

+ 1 - 2
examples/models/resources/shaders/glsl100/voxel_lighting.vs

@@ -1,7 +1,6 @@
 #version 100
-#ifdef GL_ES
+
 precision mediump float;
-#endif
 
 // Input vertex attributes
 attribute vec3 vertexPosition;