diff options
author | Ian Romanick <[email protected]> | 2012-07-18 15:59:15 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-08-14 15:41:03 -0700 |
commit | 3fd79dd9886f05f45f3dc94c028a38dd75b8ee1b (patch) | |
tree | 705dc0f323fa4635da5f59bf01d8389b4c2f61f9 /src/egl/main/eglcontext.h | |
parent | ce55741cbc0837338b73f9112ab4d84363ebaee1 (diff) |
egl: Rename ClientVersion to ClientMajorVersion, add ClientMinorVersion
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/egl/main/eglcontext.h')
-rw-r--r-- | src/egl/main/eglcontext.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/egl/main/eglcontext.h b/src/egl/main/eglcontext.h index 0ac846219a7..5e86cec2f92 100644 --- a/src/egl/main/eglcontext.h +++ b/src/egl/main/eglcontext.h @@ -52,7 +52,8 @@ struct _egl_context _EGLConfig *Config; EGLint ClientAPI; /**< EGL_OPENGL_ES_API, EGL_OPENGL_API, EGL_OPENVG_API */ - EGLint ClientVersion; /**< 1 = OpenGLES 1.x, 2 = OpenGLES 2.x */ + EGLint ClientMajorVersion; + EGLint ClientMinorVersion; /* The real render buffer when a window surface is bound */ EGLint WindowRenderBuffer; |