mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 22:10:10 +01:00
vulkan: ignore VkPipelineColorWriteCreateInfoEXT if the state is dynamic
Cc: mesa-stable Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24601>
This commit is contained in:
parent
c43135d740
commit
ce0c70fb0c
1 changed files with 1 additions and 1 deletions
|
|
@ -983,7 +983,7 @@ vk_color_blend_state_init(struct vk_color_blend_state *cb,
|
||||||
|
|
||||||
const VkPipelineColorWriteCreateInfoEXT *cw_info =
|
const VkPipelineColorWriteCreateInfoEXT *cw_info =
|
||||||
vk_find_struct_const(cb_info->pNext, PIPELINE_COLOR_WRITE_CREATE_INFO_EXT);
|
vk_find_struct_const(cb_info->pNext, PIPELINE_COLOR_WRITE_CREATE_INFO_EXT);
|
||||||
if (cw_info != NULL) {
|
if (!IS_DYNAMIC(CB_COLOR_WRITE_ENABLES) && cw_info != NULL) {
|
||||||
uint8_t color_write_enables = 0;
|
uint8_t color_write_enables = 0;
|
||||||
assert(cb_info->attachmentCount == cw_info->attachmentCount);
|
assert(cb_info->attachmentCount == cw_info->attachmentCount);
|
||||||
for (uint32_t a = 0; a < cw_info->attachmentCount; a++) {
|
for (uint32_t a = 0; a < cw_info->attachmentCount; a++) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue