diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-10 11:40:04 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-10 11:40:04 -0600 |
commit | e23a7b2ea4a311af6b661f10747716e28fa451db (patch) | |
tree | 194f11c6cf753d02b53b5a0f433c7cb1334655a4 | |
parent | 500e3af175cf8ef66bad23ae3b9e440670421ecd (diff) |
use pipe_region_reference() in softpipe_get_tex_surface() to fix refcount error
-rwxr-xr-x | src/mesa/pipe/softpipe/sp_surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_surface.c b/src/mesa/pipe/softpipe/sp_surface.c index 574b474ba3..27d4f064be 100755 --- a/src/mesa/pipe/softpipe/sp_surface.c +++ b/src/mesa/pipe/softpipe/sp_surface.c @@ -882,7 +882,7 @@ softpipe_get_tex_surface(struct pipe_context *pipe, if (ps) { assert(ps->format); assert(ps->refcount); - ps->region = mt->region; + pipe_region_reference(&ps->region, mt->region); ps->width = mt->level[level].width; ps->height = mt->level[level].height; ps->offset = offset; |