From: Nanley Chery Date: Wed, 6 Apr 2016 22:57:32 +0000 (-0700) Subject: anv/clear: Disable the scissor operation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=76b0ba087c50a271867f98eaf2acf0364d5b706e;p=mesa.git anv/clear: Disable the scissor operation 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 --- 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 },