mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
i965/blorp: Use irb->layer_count in clear
Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Acked-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
98328e4c19
commit
d581247569
1 changed files with 1 additions and 2 deletions
|
|
@ -585,8 +585,7 @@ brw_blorp_clear_color(struct brw_context *brw, struct gl_framebuffer *fb,
|
|||
(irb->mt->msaa_layout == INTEL_MSAA_LAYOUT_UMS ||
|
||||
irb->mt->msaa_layout == INTEL_MSAA_LAYOUT_CMS) ?
|
||||
irb->mt->num_samples : 1;
|
||||
unsigned num_layers =
|
||||
irb->mt->level[irb->mt_level].depth / layer_multiplier;
|
||||
unsigned num_layers = irb->layer_count;
|
||||
for (unsigned layer = 0; layer < num_layers; layer++) {
|
||||
if (!do_single_blorp_clear(brw, fb, rb, buf, partial_clear,
|
||||
layer * layer_multiplier)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue