mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
nvc0: fix 128 bit compressed storage type selection
This commit is contained in:
parent
8e1dd58a7e
commit
4de70bf43c
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ nvc0_mt_choose_storage_type(struct nv50_miptree *mt, boolean compressed)
|
|||
switch (util_format_get_blocksizebits(mt->base.base.format)) {
|
||||
case 128:
|
||||
if (compressed)
|
||||
tile_flags = 0xf4 + ms;
|
||||
tile_flags = 0xf4 + ms * 2;
|
||||
else
|
||||
tile_flags = 0xfe;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue