mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-26 12:10:22 +01:00
i965/blorp: Use isl_format_get_depth_format for setting depth formats
Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
parent
555b22a446
commit
3e46f11409
1 changed files with 1 additions and 14 deletions
|
|
@ -284,20 +284,7 @@ blorp_gen6_hiz_op(struct blorp_batch *batch,
|
|||
|
||||
params.dst.surf.samples = params.depth.surf.samples;
|
||||
params.dst.surf.logical_level0_px = params.depth.surf.logical_level0_px;
|
||||
|
||||
switch (surf->surf->format) {
|
||||
case ISL_FORMAT_R16_UNORM:
|
||||
params.depth_format = BRW_DEPTHFORMAT_D16_UNORM;
|
||||
break;
|
||||
case ISL_FORMAT_R32_FLOAT:
|
||||
params.depth_format = BRW_DEPTHFORMAT_D32_FLOAT;
|
||||
break;
|
||||
case ISL_FORMAT_R24_UNORM_X8_TYPELESS:
|
||||
params.depth_format = BRW_DEPTHFORMAT_D24_UNORM_X8_UINT;
|
||||
break;
|
||||
default:
|
||||
unreachable("not reached");
|
||||
}
|
||||
params.depth_format = isl_format_get_depth_format(surf->surf->format, false);
|
||||
|
||||
batch->blorp->exec(batch, ¶ms);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue