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/eglcontext.h | |
parent | 52676207e338b4c2b4953747521921ab79d70f06 (diff) |
egl: clean-up re-org of the client API state
Diffstat (limited to 'src/egl/main/eglcontext.h')
-rw-r--r-- | src/egl/main/eglcontext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/main/eglcontext.h b/src/egl/main/eglcontext.h index 093f65fbfb9..34fee9c6376 100644 --- a/src/egl/main/eglcontext.h +++ b/src/egl/main/eglcontext.h @@ -20,9 +20,9 @@ struct _egl_context EGLBoolean IsBound; EGLBoolean DeletePending; -#ifdef EGL_VERSION_1_2 - EGLint ClientAPI; /* Either EGL_OPENGL_ES_API or EGL_OPENVG_API */ -#endif /* EGL_VERSION_1_2 */ + + EGLint ClientAPI; /**< EGL_OPENGL_ES_API, EGL_OPENGL_API, EGL_OPENVG_API */ + EGLint ClientVersion; /**< 1 = OpenGLES 1.x, 2 = OpenGLES 2.x */ }; |