mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 17:10:11 +01:00
anv/cmd_buffer: Set depth/stencil extent based on the image
It used to be based on the framebuffer which isn't quite right.
Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Cc: "12.0" <mesa-stable@lists.freedesktop.org>
(cherry picked from commit 20e95a746d)
This commit is contained in:
parent
f614a1f4d8
commit
3fddb9fd46
1 changed files with 5 additions and 5 deletions
|
|
@ -1024,11 +1024,11 @@ cmd_buffer_emit_depth_stencil(struct anv_cmd_buffer *cmd_buffer)
|
|||
db.DepthBufferObjectControlState = GENX(MOCS),
|
||||
|
||||
db.SurfacePitch = image->depth_surface.isl.row_pitch - 1;
|
||||
db.Height = fb->height - 1;
|
||||
db.Width = fb->width - 1;
|
||||
db.LOD = 0;
|
||||
db.Depth = 1 - 1;
|
||||
db.MinimumArrayElement = 0;
|
||||
db.Height = image->extent.height - 1;
|
||||
db.Width = image->extent.width - 1;
|
||||
db.LOD = iview->base_mip;
|
||||
db.Depth = image->array_size - 1; /* FIXME: 3-D */
|
||||
db.MinimumArrayElement = iview->base_layer;
|
||||
|
||||
#if GEN_GEN >= 8
|
||||
db.SurfaceQPitch =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue