diff options
author | Kevin Rushforth <[email protected]> | 2006-10-04 23:33:25 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2006-10-04 23:33:25 +0000 |
commit | 12427076a5b420b2afba3a34c6ed0f260f6fa2f4 (patch) | |
tree | 5ac4faee2401d1a810bfc0017ebfc04074869c3c /src/native/ogl | |
parent | c82aa7449e2ddd9313d595f0a8be9604e3136582 (diff) |
Source code changes for issue 358: Document that OGL 1.2 is supported, but at reduced functionality
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@709 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src/native/ogl')
-rw-r--r-- | src/native/ogl/Canvas3D.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/native/ogl/Canvas3D.c b/src/native/ogl/Canvas3D.c index b6cb469..f3bb2da 100644 --- a/src/native/ogl/Canvas3D.c +++ b/src/native/ogl/Canvas3D.c @@ -607,13 +607,7 @@ getPropertiesFromCurrentContext( else { if (versionNumbers[1] == 2) { fprintf(stderr, - "*********************************************************\n"); - fprintf(stderr, - "*** JAVA 3D: WARNING OpenGL 1.2 is no longer supported.\n"); - fprintf(stderr, - "*** Will attempt to run with reduced functionality.\n"); - fprintf(stderr, - "*********************************************************\n"); + "JAVA 3D: OpenGL 1.2 detected; will run with reduced functionality\n"); } else { // OpenGL 1.x (1.3 or greater) ctxInfo->gl13 = JNI_TRUE; |