diff options
author | Chien Yang <[email protected]> | 2007-03-01 01:00:05 +0000 |
---|---|---|
committer | Chien Yang <[email protected]> | 2007-03-01 01:00:05 +0000 |
commit | 457dd697715116c02162b78e539d1355353c0eaf (patch) | |
tree | 46d2418d862631797eee88016cfb0c216f444b2e /src | |
parent | 1856fc92c798ef83af1fc8695eaf060122dd18ca (diff) |
Fixed a VC compiler issue on using a method without first declare.
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@782 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src')
-rw-r--r-- | src/native/ogl/Canvas3D.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/native/ogl/Canvas3D.c b/src/native/ogl/Canvas3D.c index f1dac23..9c17ce4 100644 --- a/src/native/ogl/Canvas3D.c +++ b/src/native/ogl/Canvas3D.c @@ -37,7 +37,7 @@ #endif /* DEBUG */ extern void throwAssert(JNIEnv *env, char *str); - +jboolean getJavaBoolEnv(JNIEnv *env, char* envStr); static void initializeCtxInfo(JNIEnv *env, GraphicsContextPropertiesInfo* ctxInfo); static void cleanupCtxInfo(GraphicsContextPropertiesInfo* ctxInfo); static void disableAttribFor2D(GraphicsContextPropertiesInfo *ctxProperties); |