summaryrefslogtreecommitdiff
path: root/src/gallium/include
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-09-10 13:42:49 +0800
committerChia-I Wu <olv@lunarg.com>2010-09-10 15:44:19 +0800
commit5ea092117fb607a5776f52d251f976c5691575c8 (patch)
tree49686f598caed1ea313cb5f54b6c08bda9e8f794 /src/gallium/include
parent948e3fa27ca9112b903a180d1a18c61cfb2928dc (diff)
gallium: Remove ST_API_OPENGL_ES1 and ST_API_OPENGL_ES2.
They are no longer used.
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/state_tracker/st_api.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/gallium/include/state_tracker/st_api.h b/src/gallium/include/state_tracker/st_api.h
index 9e87c8e0d4..8ea1554568 100644
--- a/src/gallium/include/state_tracker/st_api.h
+++ b/src/gallium/include/state_tracker/st_api.h
@@ -47,8 +47,6 @@
*/
enum st_api_type {
ST_API_OPENGL,
- ST_API_OPENGL_ES1,
- ST_API_OPENGL_ES2,
ST_API_OPENVG,
ST_API_COUNT
@@ -460,18 +458,4 @@ st_visual_have_buffers(const struct st_visual *visual, unsigned mask)
return ((visual->buffer_mask & mask) == mask);
}
-/* these symbols may need to be dynamically lookup up */
-extern PUBLIC struct st_api * st_api_create_OpenGL(void);
-extern PUBLIC struct st_api * st_api_create_OpenGL_ES1(void);
-extern PUBLIC struct st_api * st_api_create_OpenGL_ES2(void);
-extern PUBLIC struct st_api * st_api_create_OpenVG(void);
-
-/**
- * The entry points of the state trackers.
- */
-#define ST_CREATE_OPENGL_SYMBOL "st_api_create_OpenGL"
-#define ST_CREATE_OPENGL_ES1_SYMBOL "st_api_create_OpenGL_ES1"
-#define ST_CREATE_OPENGL_ES2_SYMBOL "st_api_create_OpenGL_ES2"
-#define ST_CREATE_OPENVG_SYMBOL "st_api_create_OpenVG"
-
#endif /* _ST_API_H_ */