diff options
Diffstat (limited to 'src/intel/blorp/blorp.c')
-rw-r--r-- | src/intel/blorp/blorp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/blorp/blorp.c b/src/intel/blorp/blorp.c index 402282f0ff0..c26490531b3 100644 --- a/src/intel/blorp/blorp.c +++ b/src/intel/blorp/blorp.c @@ -141,6 +141,7 @@ void blorp_params_init(struct blorp_params *params) { memset(params, 0, sizeof(*params)); + params->num_samples = 1; params->num_draw_buffers = 1; params->num_layers = 1; } @@ -265,6 +266,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; params.depth_format = isl_format_get_depth_format(surf->surf->format, false); + params.num_samples = params.depth.surf.samples; batch->blorp->exec(batch, ¶ms); } |