summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2010-02-01 21:58:20 +0800
committerChia-I Wu <olvaffe@gmail.com>2010-02-01 21:58:49 +0800
commit849877dc93587e2114731997357b9076e020a354 (patch)
treefc669dc98fec0a7dfefe351cc7773070be5fbda0
parent82c2ece8471d1590d0055e6f0298f1f47c1675d6 (diff)
Locking an EGLImage should return a pipe surface.
A pipe texture is known to be insufficent. It may change again if a pipe surface is proved to be insufficient too.
-rw-r--r--st_api.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/st_api.h b/st_api.h
index c70ecf3..091d078 100644
--- a/st_api.h
+++ b/st_api.h
@@ -96,7 +96,8 @@ enum st_framebuffer_attachment {
* Enumerations of state tracker manager resources.
*/
enum st_manager_resource_type {
- ST_MANAGER_RESOURCE_EGL_IMAGE, /* return struct pipe_texture */
+ /* return struct pipe_surface (this is likely to change) */
+ ST_MANAGER_RESOURCE_EGL_IMAGE,
};
/**