From: Jason Ekstrand Date: Wed, 17 Feb 2016 19:54:42 +0000 (-0800) Subject: anv/gen8_pipeline: Default color attachments to WriteDisable = true X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f9cd3de44feb83dc36f4947c81390358e448cc8;p=mesa.git anv/gen8_pipeline: Default color attachments to WriteDisable = true --- 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);