summaryrefslogtreecommitdiffstats
path: root/src/gallium/tests/graw/occlusion-query.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2012-05-12 12:56:19 +0200
committerMarek Olšák <[email protected]>2012-05-12 23:13:45 +0200
commit1a840cc5925f52079916feb2c456816a7a91d627 (patch)
tree1d44a4feeddbd623ae08a93a0c94a7ec6a98981d /src/gallium/tests/graw/occlusion-query.c
parent685a28fd8a046e8dac02c2c26ab8b169de7a2a29 (diff)
gallium/graw: stop using user_buffer_create
This is compile-tested.
Diffstat (limited to 'src/gallium/tests/graw/occlusion-query.c')
-rw-r--r--src/gallium/tests/graw/occlusion-query.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gallium/tests/graw/occlusion-query.c b/src/gallium/tests/graw/occlusion-query.c
index 5c4bc8cf479..cfaba34285d 100644
--- a/src/gallium/tests/graw/occlusion-query.c
+++ b/src/gallium/tests/graw/occlusion-query.c
@@ -94,10 +94,11 @@ set_vertices(struct vertex *vertices, unsigned bytes)
vbuf.stride = sizeof(struct vertex);
vbuf.buffer_offset = 0;
- vbuf.buffer = info.screen->user_buffer_create(info.screen,
- vertices,
- bytes,
- PIPE_BIND_VERTEX_BUFFER);
+ vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
+ PIPE_BIND_VERTEX_BUFFER,
+ PIPE_USAGE_STATIC,
+ bytes,
+ vertices);
info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf);
}