We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d8bfb0 commit 60e2e53Copy full SHA for 60e2e53
src/freedreno/common/freedreno_devices.py
@@ -1457,6 +1457,16 @@ def apply_props(self, gpu_info):
1457
gmem_ccu_depth_cache_fraction = CCUColorCacheFraction.FULL.value,
1458
gmem_per_ccu_depth_cache_size = 256 * 1024,
1459
has_fs_tex_prefetch = False,
1460
+
1461
+ # TODO it appears that HW shading rate is swapped to:
1462
+ #
1463
+ # (hlog2 | (wlog2 << 2))
1464
1465
+ # on at least some gen8 devices. Just disable the
1466
+ # extension for now until we figure out how to deal
1467
+ # with that.
1468
+ has_attachment_shading_rate = False,
1469
+ has_primitive_shading_rate = False,
1470
)
1471
1472
# Totally fake, just to get cffdump to work:
0 commit comments