summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-05-29 17:02:31 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-05-29 17:04:24 -0600
commit1c73b4ba86b424ba66a16c4006a57db505bd3ca3 (patch)
treed532cdc1bea63637f19ad85ade5f641277285165 /src
parentd1a0faffc3fde42b030f3eb18d6f31c10dfdc8f6 (diff)
egl: added Name field to _EGLDriver so a driver name string can propogate up through EGL_VERSION string
Diffstat (limited to 'src')
-rw-r--r--src/egl/main/eglapi.c3
-rw-r--r--src/egl/main/egldriver.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/egl/main/eglapi.c b/src/egl/main/eglapi.c
index 3151b35156..367787b243 100644
--- a/src/egl/main/eglapi.c
+++ b/src/egl/main/eglapi.c
@@ -81,7 +81,8 @@ eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
dpyPriv->Driver->APImajor = *major;
dpyPriv->Driver->APIminor = *minor;
- sprintf(dpyPriv->Driver->Version, "%d.%d", *major, *minor);
+ snprintf(dpyPriv->Driver->Version, sizeof(dpyPriv->Driver->Version),
+ "%d.%d (%s)", *major, *minor, dpyPriv->Driver->Name);
return retVal;
}
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h
index b0a5fadf64..e0cedb22c3 100644
--- a/src/egl/main/egldriver.h
+++ b/src/egl/main/egldriver.h
@@ -28,8 +28,10 @@ struct _egl_driver
void *LibHandle; /**< dlopen handle */
+ const char *Name; /**< name of this driver */
+
int APImajor, APIminor; /**< as returned by eglInitialize() */
- char Version[10]; /**< initialized from APImajor/minor */
+ char Version[1000]; /**< initialized from APImajor/minor, Name */
const char *ClientAPIs;