diff options
author | Eric Anholt <[email protected]> | 2018-02-10 10:29:56 +0000 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-03-20 14:06:46 -0700 |
commit | 4d8b476fa9a01aef94dc2d83e9306ba7c5adbe7f (patch) | |
tree | 1d0c8da000acac6f36ac58bdf453e59c789670bc /src/mesa | |
parent | f0211155f14c890e0c771a4fb51663c48eca983c (diff) |
intel/blorp: Fix compiler warning about num_layers.
The compiler doesn't notice that the condition for num_layers to be
undefined already defined it above (as our assert checked in a debug
build).
v2: Move the pair of assignments to one outside of the block.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c index 72c5d194efe..72578b6ea5c 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.c +++ b/src/mesa/drivers/dri/i965/brw_blorp.c @@ -1426,8 +1426,8 @@ brw_blorp_clear_depth_stencil(struct brw_context *brw, } else { level = irb->mt_level; start_layer = irb->mt_layer; - num_layers = fb->MaxNumLayers ? irb->layer_count : 1; } + num_layers = fb->MaxNumLayers ? irb->layer_count : 1; stencil_mask = ctx->Stencil.WriteMask[0] & 0xff; |