mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 12:50:25 +01:00
nv50: fix texturing from >=4GiB mark
This commit is contained in:
parent
b586774016
commit
95d43bccde
1 changed files with 2 additions and 1 deletions
|
|
@ -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) |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue