summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2010-01-17 09:25:46 +0800
committerChia-I Wu <olvaffe@gmail.com>2010-01-17 09:25:46 +0800
commit25fc118633c1b39d882c43f6ecc82be4c866463d (patch)
tree5f01b1f16f1ed01169ec2f31b275e68ae35958d9
parent6e2caba971bc35cd6f4cc8f60b3bed88b178bb5f (diff)
Remove manager resources that are added for completeness.
Those resources are not used and are removed. They may be used for direct gallium access, but they are not right now.
-rw-r--r--st_api.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/st_api.h b/st_api.h
index 8271439..aadd193 100644
--- a/st_api.h
+++ b/st_api.h
@@ -82,9 +82,6 @@ enum st_framebuffer_attachment {
};
enum st_manager_resource_type {
- ST_MANAGER_RESOURCE_EGL_DISPLAY, /* return struct pipe_screen */
- ST_MANAGER_RESOURCE_EGL_CONTEXT, /* return struct pipe_context */
- ST_MANAGER_RESOURCE_EGL_SURFACE, /* return struct st_framebuffer */
ST_MANAGER_RESOURCE_EGL_IMAGE, /* return struct pipe_texture */
};
@@ -168,9 +165,6 @@ struct st_manager_resource {
} in;
union {
- struct pipe_screen *pipe_screen;
- struct pipe_context *pipe_context;
- struct pipe_texture *pipe_texture;
struct st_framebuffer *fb;
} out;
};