aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_texture.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2012-04-10 04:33:23 +0200
committerMarek Olšák <[email protected]>2012-04-24 01:39:21 +0200
commite8ab3b1ce76dddca7b591b9ce21836ab36995653 (patch)
tree20db56568033d05bb9d073bedee959daa06f9d3e /src/gallium/drivers/softpipe/sp_texture.c
parent5ec7c28fdbc2e05d20b1a07cba1fe6ac3b6658f9 (diff)
gallium: add user_ptr in pipe_resource
I need to access the pointer in st/mesa when I only have pipe_resource.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_texture.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_texture.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_texture.c b/src/gallium/drivers/softpipe/sp_texture.c
index 95374c34ec3..f5c6f565f21 100644
--- a/src/gallium/drivers/softpipe/sp_texture.c
+++ b/src/gallium/drivers/softpipe/sp_texture.c
@@ -476,6 +476,7 @@ softpipe_user_buffer_create(struct pipe_screen *screen,
spr->base.height0 = 1;
spr->base.depth0 = 1;
spr->base.array_size = 1;
+ spr->base.user_ptr = ptr;
spr->userBuffer = TRUE;
spr->data = ptr;