zink: store drm format as internal_format for imported resources

internal_format is the "real" format of a resource, and the "real" format
of imported resources is the external-facing format, not the pipe format

this ensures the correct format is available for internal ops, such as nplanes queries

Fixes: 2e2775c11b ("zink: fix PIPE_RESOURCE_PARAM_NPLANES with format modifier")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20753>
This commit is contained in:
Mike Blumenkrantz
2023-01-17 14:43:51 -05:00
committed by Marge Bot
parent 700bc2dae0
commit 072e29a22e

View File

@@ -1553,6 +1553,7 @@ zink_resource_from_handle(struct pipe_screen *pscreen,
res->valid = true;
else
tc_buffer_disable_cpu_storage(pres);
res->internal_format = whandle->format;
}
return pres;
#else