diff options
author | Brian Paul <[email protected]> | 2008-05-29 17:02:31 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-29 17:04:24 -0600 |
commit | 1c73b4ba86b424ba66a16c4006a57db505bd3ca3 (patch) | |
tree | d532cdc1bea63637f19ad85ade5f641277285165 /src/egl/main/egldriver.h | |
parent | d1a0faffc3fde42b030f3eb18d6f31c10dfdc8f6 (diff) |
egl: added Name field to _EGLDriver so a driver name string can propogate up through EGL_VERSION string
Diffstat (limited to 'src/egl/main/egldriver.h')
-rw-r--r-- | src/egl/main/egldriver.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index b0a5fadf647..e0cedb22c35 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; |