ac/nir: drop 16x EQAA support from ac_get_ps_iter_mask

We don't support 16x EQAA anymore.

Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33024>
This commit is contained in:
Marek Olšák
2025-01-02 11:38:32 -05:00
parent 51bbe2606d
commit 4f63b21df0
+4 -5
View File
@@ -664,11 +664,10 @@ uint16_t ac_get_ps_iter_mask(unsigned ps_iter_samples)
* processing.
*/
switch (ps_iter_samples) {
case 1: return 0xffff;
case 2: return 0x5555;
case 4: return 0x1111;
case 8: return 0x0101;
case 16: return 0x0001;
case 1: return 0xff;
case 2: return 0x55;
case 4: return 0x11;
case 8: return 0x01;
default:
unreachable("invalid sample count");
}