etnaviv: blt: Add S8_UINT_Z24_UNORM format translation

Passes dEQP-GLES3.functional.fbo.invalidate.sub.unbind_blit_msaa_color

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38361>
This commit is contained in:
Christian Gmeiner
2025-11-10 23:56:41 +01:00
parent 595a2fdbd2
commit 0ca826692a

View File

@@ -341,6 +341,8 @@ translate_blt_format(enum pipe_format fmt)
return BLT_FORMAT_L8;
case PIPE_FORMAT_L8A8_UNORM:
return BLT_FORMAT_A8L8;
case PIPE_FORMAT_S8_UINT_Z24_UNORM:
return BLT_FORMAT_X24S8;
default:
return ETNA_NO_MATCH;
}