mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
intel: Drop check for wrapped_depth in RB mapping.
This used to be needed because irb->mt would be unset for fake packed depth/stencil, but no longer. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
faa44bc2f6
commit
8967f75095
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ intel_map_renderbuffer(struct gl_context *ctx,
|
|||
int stride;
|
||||
|
||||
/* We sometimes get called with this by our intel_span.c usage. */
|
||||
if (!irb->mt && !irb->wrapped_depth) {
|
||||
if (!irb->mt) {
|
||||
*out_map = NULL;
|
||||
*out_stride = 0;
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue