MSAA worked before etnaviv landed in upstream mesa but got
broken over time. Disable MSAA completely until it is fixed again.
Fixes problems/crashes with applications that want to make use of MSAA.
Cc: <mesa-stable@lists.freedesktop.org>
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5608>
if (fmt == ETNA_NO_MATCH)
return false;
- /* Validate MSAA; number of samples must be allowed, and render target
- * must have MSAA'able format. */
- if (sample_count > 1) {
- if (!VIV_FEATURE(screen, chipFeatures, MSAA))
+ /* MSAA is broken */
+ if (sample_count > 1)
return false;
- if (!translate_samples_to_xyscale(sample_count, NULL, NULL))
- return false;
- if (translate_ts_format(format) == ETNA_NO_MATCH)
- return false;
- }
if (format == PIPE_FORMAT_R8_UNORM)
return VIV_FEATURE(screen, chipMinorFeatures5, HALTI5);