summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/glean/tglsl1.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/glean/tglsl1.cpp b/src/glean/tglsl1.cpp
index 5312602..f659bbf 100644
--- a/src/glean/tglsl1.cpp
+++ b/src/glean/tglsl1.cpp
@@ -4481,7 +4481,9 @@ GLSLTest::isApplicable() const
const char *version = (const char *) glGetString(GL_VERSION);
if (strncmp(version, "2.0", 3) == 0 ||
strncmp(version, "2.1", 3) == 0 ||
- strncmp(version, "3.0", 3) == 0) {
+ strncmp(version, "3.0", 3) == 0 ||
+ strncmp(version, "3.1", 3) == 0 ||
+ strncmp(version, "3.2", 3) == 0) {
return true;
}
else {