summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/noop
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2012-04-26 13:41:33 +0200
committerMarek Olšák <maraeo@gmail.com>2012-04-30 01:18:49 +0200
commit3ac0683d632347347c2fdbd546da0c7c2effb08a (patch)
tree53fb6574b19060bc6c794c831e56060285b7caeb /src/gallium/drivers/noop
parent65d451d9fa1192c386301ca0b84b6c5cd369f92d (diff)
gallium: remove pipe_resource::user_ptr
It's unused now.
Diffstat (limited to 'src/gallium/drivers/noop')
-rw-r--r--src/gallium/drivers/noop/noop_pipe.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/noop/noop_pipe.c b/src/gallium/drivers/noop/noop_pipe.c
index e63263a0e0c..e47f944b59b 100644
--- a/src/gallium/drivers/noop/noop_pipe.c
+++ b/src/gallium/drivers/noop/noop_pipe.c
@@ -156,7 +156,6 @@ static struct pipe_resource *noop_user_buffer_create(struct pipe_screen *screen,
templ.height0 = 1;
templ.depth0 = 1;
templ.flags = 0;
- templ.user_ptr = ptr;
return noop_resource_create(screen, &templ);
}