summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2004-12-21 19:05:45 +0000
committerKevin Rushforth <[email protected]>2004-12-21 19:05:45 +0000
commit451909b8beecf3a915587538495dd47d4e635d08 (patch)
tree0f82ae46c7ab4b54f732e7d3c677657d132c12c3 /src
parentf5a0736664ce8b48fa7024e3655e2796fc339d80 (diff)
Issue number: 91
Implemented feature request for Issue 91: Added two new properties, native.vendor and native.renderer, which return the name of the vendor and the renderer string from the native library. Currently D3D sets these properties to "<UNKNOWN>". git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@93 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src')
-rw-r--r--src/classes/share/javax/media/j3d/Canvas3D.java14
-rw-r--r--src/native/ogl/Canvas3D.c64
-rw-r--r--src/native/ogl/gldefs.h2
3 files changed, 54 insertions, 26 deletions
diff --git a/src/classes/share/javax/media/j3d/Canvas3D.java b/src/classes/share/javax/media/j3d/Canvas3D.java
index 0fabc33..55821e0 100644
--- a/src/classes/share/javax/media/j3d/Canvas3D.java
+++ b/src/classes/share/javax/media/j3d/Canvas3D.java
@@ -589,8 +589,10 @@ public class Canvas3D extends Canvas {
// constructor to allow Java 3D to extend it.
static Hashtable fbConfigTable = new Hashtable();
- // The native graphics version and renderer information
- String nativeGraphicsVersion = null;
+ // The native graphics version, vendor, and renderer information
+ private String nativeGraphicsVersion = "<UNKNOWN>";
+ private String nativeGraphicsVendor = "<UNKNOWN>";
+ private String nativeGraphicsRenderer = "<UNKNOWN>";
NativeWSInfo nativeWSobj = new NativeWSInfo();
boolean firstPaintCalled = false;
@@ -3546,10 +3548,14 @@ public class Canvas3D extends Canvas {
values.add(new Integer(numTexUnitSupported));
keys.add("native.version");
- if(nativeGraphicsVersion == null)
- nativeGraphicsVersion = "";
values.add(nativeGraphicsVersion);
+ keys.add("native.vendor");
+ values.add(nativeGraphicsVendor);
+
+ keys.add("native.renderer");
+ values.add(nativeGraphicsRenderer);
+
// Now Create read-only properties object
queryProps =
new J3dQueryProps((String[]) keys.toArray(new String[0]),
diff --git a/src/native/ogl/Canvas3D.c b/src/native/ogl/Canvas3D.c
index a1ef0c5..4db442f 100644
--- a/src/native/ogl/Canvas3D.c
+++ b/src/native/ogl/Canvas3D.c
@@ -38,9 +38,6 @@
#endif /* DEBUG */
-static char *gl_VERSION;
-static char *gl_VENDOR;
-
static void initializeCtxInfo(JNIEnv *env, GraphicsContextPropertiesInfo* ctxInfo);
static void cleanupCtxInfo(GraphicsContextPropertiesInfo* ctxInfo);
static void disableAttribFor2D(GraphicsContextPropertiesInfo *ctxProperties);
@@ -66,9 +63,10 @@ HWND createDummyWindow(const char* szAppName);
#endif
/*
- * extract the version numbers
- * when return , numbers[0] contains major version number
+ * Extract the version numbers from a copy of the version string.
+ * Upon return, numbers[0] contains major version number
* numbers[1] contains minor version number
+ * Note that the passed in version string is modified.
*/
void extractVersionInfo(char *versionStr, int* numbers){
char *majorNumStr;
@@ -430,7 +428,9 @@ getPropertiesFromCurrentContext(
JNIEnv table = *env;
/* version and extension */
- char *glversion;
+ char *glVersion;
+ char *glVendor;
+ char *glRenderer;
char *extensionStr;
char *tmpVersionStr;
char *tmpExtensionStr;
@@ -443,20 +443,7 @@ getPropertiesFromCurrentContext(
PixelFormatInfo *PixelFormatInfoPtr = (PixelFormatInfo *)fbConfigListPtr;
#endif
- /* get OpenGL version */
- glversion = (char *)glGetString(GL_VERSION);
- if (glversion == NULL) {
- fprintf(stderr, "glversion == null\n");
- return JNI_FALSE;
- }
- gl_VERSION = glversion;
- tmpVersionStr = strdup(glversion);
- gl_VENDOR = (char *)glGetString(GL_VENDOR);
- if (gl_VENDOR == NULL) {
- gl_VENDOR = "<unkown vendor>";
- }
-
- /* Get the extension */
+ /* Get the list of extension */
extensionStr = (char *)glGetString(GL_EXTENSIONS);
if (extensionStr == NULL) {
fprintf(stderr, "extensionStr == null\n");
@@ -464,15 +451,34 @@ getPropertiesFromCurrentContext(
}
tmpExtensionStr = strdup(extensionStr);
+ /* Get the OpenGL version */
+ glVersion = (char *)glGetString(GL_VERSION);
+ if (glVersion == NULL) {
+ fprintf(stderr, "glVersion == null\n");
+ return JNI_FALSE;
+ }
+ tmpVersionStr = strdup(glVersion);
+
+ /* Get the OpenGL vendor and renderer */
+ glVendor = (char *)glGetString(GL_VENDOR);
+ if (glVendor == NULL) {
+ glVendor = "<UNKNOWN>";
+ }
+ glRenderer = (char *)glGetString(GL_RENDERER);
+ if (glRenderer == NULL) {
+ glRenderer = "<UNKNOWN>";
+ }
+
/*
fprintf(stderr, " pixelFormat : %d\n", pixelFormat);
fprintf(stderr, " extensionStr : %s\n", tmpExtensionStr);
*/
- ctxInfo->versionStr = strdup(glversion);
+ ctxInfo->versionStr = strdup(glVersion);
+ ctxInfo->vendorStr = strdup(glVendor);
+ ctxInfo->rendererStr = strdup(glRenderer);
ctxInfo->extensionStr = strdup(extensionStr);
-
/* find out the version, major and minor version number */
extractVersionInfo(tmpVersionStr, versionNumbers);
@@ -1022,6 +1028,12 @@ void setupCanvasProperties(
rsc_field = (jfieldID) (*(table->GetFieldID))(env, cv_class, "nativeGraphicsVersion", "Ljava/lang/String;");
(*(table->SetObjectField))(env, obj, rsc_field, (*env)->NewStringUTF(env, ctxInfo->versionStr));
+ rsc_field = (jfieldID) (*(table->GetFieldID))(env, cv_class, "nativeGraphicsVendor", "Ljava/lang/String;");
+ (*(table->SetObjectField))(env, obj, rsc_field, (*env)->NewStringUTF(env, ctxInfo->vendorStr));
+
+ rsc_field = (jfieldID) (*(table->GetFieldID))(env, cv_class, "nativeGraphicsRenderer", "Ljava/lang/String;");
+ (*(table->SetObjectField))(env, obj, rsc_field, (*env)->NewStringUTF(env, ctxInfo->rendererStr));
+
if (ctxInfo->textureAnisotropicFilterAvailable) {
float degree;
@@ -3002,6 +3014,8 @@ initializeCtxInfo(JNIEnv *env , GraphicsContextPropertiesInfo* ctxInfo)
/* version and extension info */
ctxInfo->versionStr = NULL;
+ ctxInfo->vendorStr = NULL;
+ ctxInfo->rendererStr = NULL;
ctxInfo->extensionStr = NULL;
ctxInfo->versionNumbers[0] = 1;
ctxInfo->versionNumbers[1] = 1;
@@ -3118,9 +3132,15 @@ cleanupCtxInfo(GraphicsContextPropertiesInfo* ctxInfo)
{
if( ctxInfo->versionStr != NULL)
free(ctxInfo->versionStr);
+ if( ctxInfo->vendorStr != NULL)
+ free(ctxInfo->vendorStr);
+ if( ctxInfo->rendererStr != NULL)
+ free(ctxInfo->rendererStr);
if( ctxInfo->extensionStr != NULL)
free(ctxInfo->extensionStr);
ctxInfo->versionStr = NULL;
+ ctxInfo->vendorStr = NULL;
+ ctxInfo->rendererStr = NULL;
ctxInfo->extensionStr = NULL;
}
diff --git a/src/native/ogl/gldefs.h b/src/native/ogl/gldefs.h
index c1f0c55..91547d7 100644
--- a/src/native/ogl/gldefs.h
+++ b/src/native/ogl/gldefs.h
@@ -401,6 +401,8 @@ typedef struct {
/* version and extension info */
char *versionStr;
+ char *vendorStr;
+ char *rendererStr;
char *extensionStr;
int versionNumbers[2];