diff options
author | Brian Paul <[email protected]> | 2008-05-30 13:45:40 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-30 13:45:40 -0600 |
commit | d5078b94323241a6482f54797756116b1c864327 (patch) | |
tree | 7d5d96198eb770a9c24b6425d0ec53dc266cafb9 /src/egl/main/egldriver.h | |
parent | 52676207e338b4c2b4953747521921ab79d70f06 (diff) |
egl: clean-up re-org of the client API state
Diffstat (limited to 'src/egl/main/egldriver.h')
-rw-r--r-- | src/egl/main/egldriver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index e0cedb22c35..09d7755f5de 100644 --- a/src/egl/main/egldriver.h +++ b/src/egl/main/egldriver.h @@ -33,7 +33,8 @@ struct _egl_driver int APImajor, APIminor; /**< as returned by eglInitialize() */ char Version[1000]; /**< initialized from APImajor/minor, Name */ - const char *ClientAPIs; + /** Bitmask of supported APIs (EGL_xx_BIT) set by the driver during init */ + EGLint ClientAPIsMask; _EGLAPI API; /**< EGL API dispatch table */ |