diff options
author | Ben Skeggs <[email protected]> | 2010-03-16 13:18:39 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2010-03-16 13:18:39 +1000 |
commit | 95d43bccde9ba5c0727bb2b9e52d050dacfa0cfa (patch) | |
tree | a7f201e9750871c18535ab622e4a3e4eb3841748 | |
parent | b586774016e2f5dd1541cd3b0c93f8ea69fe9e9a (diff) |
nv50: fix texturing from >=4GiB mark
-rw-r--r-- | src/gallium/drivers/nv50/nv50_tex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_tex.c b/src/gallium/drivers/nv50/nv50_tex.c index 4c48b12cd87..eb64f6cee48 100644 --- a/src/gallium/drivers/nv50/nv50_tex.c +++ b/src/gallium/drivers/nv50/nv50_tex.c @@ -137,7 +137,8 @@ nv50_tex_construct(struct nv50_context *nv50, struct nouveau_stateobj *so, so_data (so, nv50_tex_format_list[i].hw); so_reloc(so, mt->base.bo, 0, NOUVEAU_BO_VRAM | NOUVEAU_BO_LOW | NOUVEAU_BO_RD, 0, 0); - so_data (so, mode); + so_reloc(so, mt->base.bo, 0, NOUVEAU_BO_VRAM | NOUVEAU_BO_HIGH | + NOUVEAU_BO_RD | NOUVEAU_BO_OR, mode, mode); so_data (so, 0x00300000); so_data (so, mt->base.base.width0 | (1 << 31)); so_data (so, (mt->base.base.last_level << 28) | |