From 76b0ba087c50a271867f98eaf2acf0364d5b706e Mon Sep 17 00:00:00 2001 From: Nanley Chery Date: Wed, 6 Apr 2016 15:57:32 -0700 Subject: [PATCH] anv/clear: Disable the scissor operation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Since the scissor rectangle always matches that of the framebuffer, this operation isn't needed. Signed-off-by: Nanley Chery Reviewed-by: Kristian Høgsberg Kristensen --- src/intel/vulkan/anv_meta_clear.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_meta_clear.c b/src/intel/vulkan/anv_meta_clear.c index a03701c684b..50085894b9c 100644 --- a/src/intel/vulkan/anv_meta_clear.c +++ b/src/intel/vulkan/anv_meta_clear.c @@ -213,6 +213,7 @@ create_pipeline(struct anv_device *device, .color_attachment_count = MAX_RTS, .use_repclear = use_repclear, .disable_viewport = true, + .disable_scissor = true, .disable_vs = true, .use_rectlist = true }, -- 2.11.0