Merge pull request #3606 from JakubValtar/remove-fixed-func

Remove debug code
This commit is contained in:
Ben Fry
2015-08-15 08:49:33 -04:00
2 changed files with 4 additions and 8 deletions

View File

@@ -1689,8 +1689,6 @@ public abstract class PGL {
fragSrc[0] = "#version " + version;
fragSrc[1] = "out vec4 fragColor;";
PApplet.printArray(fragSrc);
return fragSrc;
}
return fragSrc0;
@@ -1716,8 +1714,6 @@ public abstract class PGL {
String[] vertSrc = preprocessShaderSource(vertSrc0, search, replace, 1);
vertSrc[0] = "#version " + version;
PApplet.printArray(vertSrc);
return vertSrc;
}
return vertSrc0;