summaryrefslogtreecommitdiff
path: root/progs/gallium/raw/clear.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-04-12 15:09:18 +0900
committerJosé Fonseca <jfonseca@vmware.com>2010-04-12 15:32:23 +0900
commitcd70b6bd9ea8bfc4342f45340a1fedfaed81257f (patch)
treebf984bb2193fc189a167197891535b438669756d /progs/gallium/raw/clear.c
parent19211bb5b8fa406fde294ec84f814e3b7881c474 (diff)
progs/gallium/raw: Update symbols.
Untested -- just the same changes done to progs/gallium/python.
Diffstat (limited to 'progs/gallium/raw/clear.c')
-rw-r--r--progs/gallium/raw/clear.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/progs/gallium/raw/clear.c b/progs/gallium/raw/clear.c
index 5ef5254edc..706e3be372 100644
--- a/progs/gallium/raw/clear.c
+++ b/progs/gallium/raw/clear.c
@@ -56,17 +56,17 @@ int main( int argc, char *argv[] )
templat.depth0 = 1;
templat.last_level = 0;
templat.nr_samples = 1;
- templat.tex_usage = (PIPE_TEXTURE_USAGE_RENDER_TARGET |
- PIPE_TEXTURE_USAGE_DISPLAY_TARGET);
+ templat.bind = (PIPE_BIND_RENDER_TARGET |
+ PIPE_BIND_DISPLAY_TARGET);
- tex = screen->texture_create(screen,
+ tex = screen->resource_create(screen,
&templat);
if (tex == NULL)
exit(4);
surf = screen->get_tex_surface(screen, tex, 0, 0, 0,
- PIPE_TEXTURE_USAGE_RENDER_TARGET |
- PIPE_TEXTURE_USAGE_DISPLAY_TARGET);
+ PIPE_BIND_RENDER_TARGET |
+ PIPE_BIND_DISPLAY_TARGET);
if (surf == NULL)
exit(5);