From f674a2e2ed72f90379361ca597f25a7e6e28b5ac Mon Sep 17 00:00:00 2001 From: Jakub Valtar Date: Fri, 14 Aug 2015 19:13:36 -0400 Subject: [PATCH] Fixed typos in shader preprocessing --- core/src/processing/opengl/PGL.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/processing/opengl/PGL.java b/core/src/processing/opengl/PGL.java index dedf1e663..c1bb0b087 100644 --- a/core/src/processing/opengl/PGL.java +++ b/core/src/processing/opengl/PGL.java @@ -1673,7 +1673,7 @@ public abstract class PGL { // 'textureXXX()' functions by 'texture()' functions. Order of these // replacements is important to prevent collisions between these two. String[] search = new String[] { - "varying", "attibute", + "varying", "attribute", "texture", "texMap2D", "texMap3D", "texMap2DRect", "texMapCube", "gl_FragColor" @@ -1701,7 +1701,7 @@ public abstract class PGL { // 'textureXXX()' functions by 'texture()' functions. Order of these // replacements is important to prevent collisions between these two. String[] search = new String[] { - "varying", "attibute", + "varying", "attribute", "texture", "texMap2D", "texMap3D", "texMap2DRect", "texMapCube" };