cc: mesa-stable
Reviewed-by: Brian Paul brianp@vmware.com
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21582>
* If no depth buffer is bound, send the utility function the default
* format for no bound depth (PIPE_FORMAT_NONE).
*/
- enum pipe_format depth_format = fb->zsbuf ?
+ enum pipe_format depth_format = fb->zsbuf && !(LP_PERF & PERF_NO_DEPTH) ?
fb->zsbuf->format : PIPE_FORMAT_NONE;
const struct util_format_description *depth_desc =
util_format_description(depth_format);