trying to fix OpenGL support on Mac OSX

This commit is contained in:
Vadim Lopatin 2015-03-20 14:56:14 +03:00
parent 20f6488694
commit 5f01235be1
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class GLProgram {
}
private void compatibilityFixes(ref char[] code, GLuint type) {
if (glslversionInt < 150)
//if (glslversionInt < 150)
code = replace(code, " texture(", " texture2D(");
}