Ver código fonte

nvc0: disable compressed storage type 0xdb for now

Single-sample color compression doesn't seem that useful anyway.
tags/mesa-9.2-rc1
Christoph Bumiller 12 anos atrás
pai
commit
7628cc247f
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3
    1
      src/gallium/drivers/nvc0/nvc0_miptree.c

+ 3
- 1
src/gallium/drivers/nvc0/nvc0_miptree.c Ver arquivo

@@ -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;

Carregando…
Cancelar
Salvar