aboutsummaryrefslogtreecommitdiffstats
path: root/src/native
diff options
context:
space:
mode:
Diffstat (limited to 'src/native')
-rw-r--r--src/native/ogl/Canvas3D.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/native/ogl/Canvas3D.c b/src/native/ogl/Canvas3D.c
index 0b412f4..37c8b9f 100644
--- a/src/native/ogl/Canvas3D.c
+++ b/src/native/ogl/Canvas3D.c
@@ -603,17 +603,16 @@ getPropertiesFromCurrentContext(
return JNI_FALSE;
}
- if (versionNumbers[0] > 1) {
+ if (versionNumbers[0] == 1) {
if (versionNumbers[1] == 2) {
fprintf(stderr,
"JAVA 3D: OpenGL 1.2 detected; will run with reduced functionality\n");
- } else {
- if (versionNumbers[1] >= 3) {
- ctxInfo->gl13 = JNI_TRUE;
- }
- if (versionNumbers[1] >= 4) {
- ctxInfo->gl14 = JNI_TRUE;
- }
+ }
+ if (versionNumbers[1] >= 3) {
+ ctxInfo->gl13 = JNI_TRUE;
+ }
+ if (versionNumbers[1] >= 4) {
+ ctxInfo->gl14 = JNI_TRUE;
}
} else /* major >= 2 */ {
ctxInfo->gl20 = JNI_TRUE;