mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 04:40:11 +01:00
nvc0: disable compressed storage type 0xdb for now
Single-sample color compression doesn't seem that useful anyway.
This commit is contained in:
parent
ea12fc3f6c
commit
7628cc247f
1 changed files with 3 additions and 1 deletions
|
|
@ -101,9 +101,11 @@ nvc0_mt_choose_storage_type(struct nv50_miptree *mt, boolean compressed)
|
|||
}
|
||||
break;
|
||||
case 32:
|
||||
if (compressed) {
|
||||
if (compressed && ms) {
|
||||
switch (ms) {
|
||||
/* This one makes things blurry:
|
||||
case 0: tile_flags = 0xdb; break;
|
||||
*/
|
||||
case 1: tile_flags = 0xdd; break;
|
||||
case 2: tile_flags = 0xdf; break;
|
||||
case 3: tile_flags = 0xe4; break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue