diff options
author | Chia-I Wu <[email protected]> | 2010-09-10 12:59:43 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-09-10 15:44:11 +0800 |
commit | 948e3fa27ca9112b903a180d1a18c61cfb2928dc (patch) | |
tree | 80b9a684a2f12ed60a65757860203d2bff825fad /src/gallium/targets/egl/st_GL.c | |
parent | 0cd480f07639ec9ee01424aaa3e0c900b2204d4f (diff) |
st/egl: Use profiles to create OpenGL ES contexts.
Replace all uses of ST_API_OPENGL_ES{1,2} by profiles. Having 3
st_api's to provide OpenGL, OpenGL ES 1.1, and OpenGL ES 2.0 is not a
sane abstraction, since all of them share glapi for current
context/dispatch management.
Diffstat (limited to 'src/gallium/targets/egl/st_GL.c')
-rw-r--r-- | src/gallium/targets/egl/st_GL.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gallium/targets/egl/st_GL.c b/src/gallium/targets/egl/st_GL.c index 17b7bf9d481..69c8f7a83cf 100644 --- a/src/gallium/targets/egl/st_GL.c +++ b/src/gallium/targets/egl/st_GL.c @@ -1,26 +1,8 @@ #include "state_tracker/st_gl_api.h" #include "state_tracker/st_api.h" -#if FEATURE_GL PUBLIC struct st_api * st_api_create_OpenGL(void) { return st_gl_api_create(); } -#endif - -#if FEATURE_ES1 -PUBLIC struct st_api * -st_api_create_OpenGL_ES1(void) -{ - return st_gl_api_create_es1(); -} -#endif - -#if FEATURE_ES2 -PUBLIC struct st_api * -st_api_create_OpenGL_ES2(void) -{ - return st_gl_api_create_es2(); -} -#endif |