summaryrefslogtreecommitdiff
path: root/src/intel/blorp/blorp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/intel/blorp/blorp.c')
-rw-r--r--src/intel/blorp/blorp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/intel/blorp/blorp.c b/src/intel/blorp/blorp.c
index 84756c74715..37b8251c916 100644
--- a/src/intel/blorp/blorp.c
+++ b/src/intel/blorp/blorp.c
@@ -462,10 +462,10 @@ blorp_hiz_op(struct blorp_batch *batch, struct blorp_surf *surf,
* surfaces, not 8. But commit 1f112cc increased the alignment from 4 to
* 8, which prevents the clobbering.
*/
- params.x1 = minify(params.depth.surf.logical_level0_px.width,
- params.depth.view.base_level);
- params.y1 = minify(params.depth.surf.logical_level0_px.height,
- params.depth.view.base_level);
+ params.x1 = u_minify(params.depth.surf.logical_level0_px.width,
+ params.depth.view.base_level);
+ params.y1 = u_minify(params.depth.surf.logical_level0_px.height,
+ params.depth.view.base_level);
params.x1 = ALIGN(params.x1, 8);
params.y1 = ALIGN(params.y1, 4);
@@ -504,10 +504,10 @@ blorp_hiz_op(struct blorp_batch *batch, struct blorp_surf *surf,
* the base LOD extent. Just assert that the caller is accessing an
* LOD that satisfies this requirement.
*/
- assert(minify(params.depth.surf.logical_level0_px.width,
- params.depth.view.base_level) == params.x1);
- assert(minify(params.depth.surf.logical_level0_px.height,
- params.depth.view.base_level) == params.y1);
+ assert(u_minify(params.depth.surf.logical_level0_px.width,
+ params.depth.view.base_level) == params.x1);
+ assert(u_minify(params.depth.surf.logical_level0_px.height,
+ params.depth.view.base_level) == params.y1);
}
params.dst.surf.samples = params.depth.surf.samples;