Explorar o código

Fix unexisting `texture` function in GLSL

DricomDragon %!s(int64=4) %!d(string=hai) anos
pai
achega
5deb84f347
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      caban/Shaders/texture.frag

+ 1 - 1
caban/Shaders/texture.frag

@@ -24,5 +24,5 @@ void main()
 {
     // Couleur du pixel
 
-    out_Color = texture(texture, coordTexture);
+    out_Color = texture2D(texture, coordTexture);
 }