asahi: Assert that u_transfer_helper is well-behaved

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18623>
This commit is contained in:
Alyssa Rosenzweig
2022-08-20 13:34:30 -04:00
parent adfd213241
commit dc05b042ab
+4
View File
@@ -169,6 +169,10 @@ agx_resource_create(struct pipe_screen *screen,
nresource->mipmapped = (templ->last_level > 0);
nresource->internal_format = nresource->base.format;
assert(templ->format != PIPE_FORMAT_Z24X8_UNORM &&
templ->format != PIPE_FORMAT_Z24_UNORM_S8_UINT &&
"u_transfer_helper should have lowered");
nresource->layout = (struct ail_layout) {
.tiling = (nresource->modifier == DRM_FORMAT_MOD_LINEAR) ?
AIL_TILING_LINEAR : AIL_TILING_TWIDDLED,