From 9f9cd3de44feb83dc36f4947c81390358e448cc8 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Wed, 17 Feb 2016 11:54:42 -0800 Subject: [PATCH] anv/gen8_pipeline: Default color attachments to WriteDisable = true --- src/vulkan/gen8_pipeline.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/vulkan/gen8_pipeline.c b/src/vulkan/gen8_pipeline.c index c41d6ffa82e..eec3f7aafdd 100644 --- a/src/vulkan/gen8_pipeline.c +++ b/src/vulkan/gen8_pipeline.c @@ -158,6 +158,13 @@ emit_cb_state(struct anv_pipeline *pipeline, } } + for (uint32_t i = info->attachmentCount; i < 8; i++) { + blend_state.Entry[i].WriteDisableAlpha = true; + blend_state.Entry[i].WriteDisableRed = true; + blend_state.Entry[i].WriteDisableGreen = true; + blend_state.Entry[i].WriteDisableBlue = true; + } + GENX(BLEND_STATE_pack)(NULL, pipeline->blend_state.map, &blend_state); if (!device->info.has_llc) anv_state_clflush(pipeline->blend_state); -- 2.30.2