diff options
author | Ben Skeggs <skeggsb-at-gmail.com> | 2008-11-13 16:47:47 +0000 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2008-11-13 16:47:47 +0000 |
commit | 2acdb116ced6b425e12bb6910c307d10b2939840 (patch) | |
tree | 4c07375a686065344f8b0897907f6af500130685 /src/mesa/state_tracker/st_public.h | |
parent | 16340f8d4dfbde9cea01637ea225053194b8c640 (diff) |
gallium: add st_set_teximage_surface for EXT_texture_from_pixmap
support.
Diffstat (limited to 'src/mesa/state_tracker/st_public.h')
-rw-r--r-- | src/mesa/state_tracker/st_public.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_public.h b/src/mesa/state_tracker/st_public.h index 6ef30f44032..88995aa8747 100644 --- a/src/mesa/state_tracker/st_public.h +++ b/src/mesa/state_tracker/st_public.h @@ -42,6 +42,8 @@ #define ST_SURFACE_DEPTH 8 #define ST_TEXTURE_2D 0x2 +#define ST_TEXTURE_RECT 0x4 + #define ST_TEXTURE_RGB 0x1 #define ST_TEXTURE_RGBA 0x2 @@ -99,6 +101,7 @@ void st_finish( struct st_context *st ); void st_notify_swapbuffers(struct st_framebuffer *stfb); void st_notify_swapbuffers_complete(struct st_framebuffer *stfb); +int st_set_teximage(struct pipe_texture *pt, int target); /** Redirect rendering into stfb's surface to a texture image */ int st_bind_teximage(struct st_framebuffer *stfb, uint surfIndex, |