diff options
author | Younes Manton <[email protected]> | 2009-01-21 16:55:35 -0500 |
---|---|---|
committer | Younes Manton <[email protected]> | 2009-01-21 16:55:35 -0500 |
commit | 01cbd764962ff49bf104e5997914ced53360ef81 (patch) | |
tree | 049ea9becf52b1c79d1828a3bf05b5f7734f5058 /src/gallium/drivers/nv30 | |
parent | bcb5ea097c11e3776070f30b00fcf6c5fac62df3 (diff) |
nouveau: Map correct mip level when using the shadow (nv30, nv40).
Diffstat (limited to 'src/gallium/drivers/nv30')
-rw-r--r-- | src/gallium/drivers/nv30/nv30_screen.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/gallium/drivers/nv30/nv30_screen.c b/src/gallium/drivers/nv30/nv30_screen.c index 29356e8c1e5..1fac6d3df83 100644 --- a/src/gallium/drivers/nv30/nv30_screen.c +++ b/src/gallium/drivers/nv30/nv30_screen.c @@ -145,14 +145,15 @@ nv30_surface_map(struct pipe_screen *screen, struct pipe_surface *surface, surface->texture->tex_usage = old_tex_usage; assert(mt->shadow_tex->tex_usage & NOUVEAU_TEXTURE_USAGE_LINEAR); - mt->shadow_surface = screen->get_tex_surface - ( - screen, mt->shadow_tex, - surface->face, surface->level, surface->zslice, - surface->usage - ); } + mt->shadow_surface = screen->get_tex_surface + ( + screen, mt->shadow_tex, + surface->face, surface->level, surface->zslice, + surface->usage + ); + surface_to_map = mt->shadow_surface; } else |