Procházet zdrojové kódy

Fix unexisting `texture` function in GLSL

DricomDragon před 4 roky
rodič
revize
5deb84f347
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);
 }