diff options
author | Jonathan Marek <[email protected]> | 2019-08-09 11:44:07 -0400 |
---|---|---|
committer | Lucas Stach <[email protected]> | 2019-10-18 19:30:41 +0200 |
commit | 9a7a92c1ec1c96b25995a530405fd8de298a221f (patch) | |
tree | a1f99fc3eb9e59b7b9c19c4f8dbf1cba0826c514 | |
parent | 15c5ec00245d5e872dd3339050c59b0ac128f982 (diff) |
etnaviv: check NO_ASTC feature bit
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Lucas Stach <[email protected]>
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_screen.c b/src/gallium/drivers/etnaviv/etnaviv_screen.c index 7feb0cd6831..7c7d1d32e54 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_screen.c +++ b/src/gallium/drivers/etnaviv/etnaviv_screen.c @@ -752,7 +752,8 @@ etna_get_specs(struct etna_screen *screen) if (screen->specs.single_buffer) DBG("etnaviv: Single buffer mode enabled with %d pixel pipes", screen->specs.pixel_pipes); - screen->specs.tex_astc = VIV_FEATURE(screen, chipMinorFeatures4, TEXTURE_ASTC); + screen->specs.tex_astc = VIV_FEATURE(screen, chipMinorFeatures4, TEXTURE_ASTC) && + !VIV_FEATURE(screen, chipMinorFeatures6, NO_ASTC); screen->specs.use_blt = VIV_FEATURE(screen, chipMinorFeatures5, BLT_ENGINE); |