diff options
author | Marek Olšák <[email protected]> | 2012-04-26 13:41:33 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-04-30 01:18:49 +0200 |
commit | 3ac0683d632347347c2fdbd546da0c7c2effb08a (patch) | |
tree | 53fb6574b19060bc6c794c831e56060285b7caeb /src/gallium/drivers/softpipe | |
parent | 65d451d9fa1192c386301ca0b84b6c5cd369f92d (diff) |
gallium: remove pipe_resource::user_ptr
It's unused now.
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_texture.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_texture.c b/src/gallium/drivers/softpipe/sp_texture.c index 292010638f9..ee8d4230dd9 100644 --- a/src/gallium/drivers/softpipe/sp_texture.c +++ b/src/gallium/drivers/softpipe/sp_texture.c @@ -476,7 +476,6 @@ 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; |