From a4a426008b7431a6003d60c7dfc6c1262888736a Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Tue, 24 Apr 2018 11:26:49 -0700 Subject: [PATCH] iris: no more drawing rectangle in blorp there's some bug here as Jason's patches for only emitting 3DS_DR once got reverted by Mark later on, apparently they regressed MSAA tests. need to sort that out. --- src/gallium/drivers/iris/iris_blorp.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/gallium/drivers/iris/iris_blorp.c b/src/gallium/drivers/iris/iris_blorp.c index 795a80ae073..bee2e95a9cf 100644 --- a/src/gallium/drivers/iris/iris_blorp.c +++ b/src/gallium/drivers/iris/iris_blorp.c @@ -279,11 +279,7 @@ iris_blorp_exec(struct blorp_batch *blorp_batch, // XXX: PMA - gen8_write_pma_stall_bits(ice, 0); #endif - // XXX: knock this off...land Jason's i965 patches... - blorp_emit(blorp_batch, GENX(3DSTATE_DRAWING_RECTANGLE), rect) { - rect.ClippedDrawingRectangleXMax = MAX2(params->x1, params->x0) - 1; - rect.ClippedDrawingRectangleYMax = MAX2(params->y1, params->y0) - 1; - } + // XXX: TODO...drawing rectangle...unrevert Jason's patches on master blorp_exec(blorp_batch, params); -- 2.30.2