summaryrefslogtreecommitdiffstats
path: root/src/intel/blorp
diff options
context:
space:
mode:
Diffstat (limited to 'src/intel/blorp')
-rw-r--r--src/intel/blorp/blorp_clear.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/intel/blorp/blorp_clear.c b/src/intel/blorp/blorp_clear.c
index 369e18726f2..0e523dfe5b3 100644
--- a/src/intel/blorp/blorp_clear.c
+++ b/src/intel/blorp/blorp_clear.c
@@ -308,6 +308,11 @@ blorp_fast_clear(struct blorp_batch *batch,
uint32_t level, uint32_t start_layer, uint32_t num_layers,
uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1)
{
+ /* Ensure that all layers undergoing the clear have an auxiliary buffer. */
+ assert(start_layer + num_layers <=
+ MAX2(surf->aux_surf->logical_level0_px.depth >> level,
+ surf->aux_surf->logical_level0_px.array_len));
+
struct blorp_params params;
blorp_params_init(&params);
params.num_layers = num_layers;