Lines Matching refs:blendEquations
1876 std::vector<VkColorBlendEquationEXT> blendEquations;
3635 state->blendEquations.resize(pointerToCreateInfo->pColorBlendState->attachmentCount);
3642 state->blendEquations[i].srcColorBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].srcColorBlendFactor;
3643 state->blendEquations[i].dstColorBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].dstColorBlendFactor;
3644 state->blendEquations[i].colorBlendOp = pointerToCreateInfo->pColorBlendState->pAttachments[i].colorBlendOp;
3645 state->blendEquations[i].srcAlphaBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].srcAlphaBlendFactor;
3646 state->blendEquations[i].dstAlphaBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].dstAlphaBlendFactor;
3647 state->blendEquations[i].alphaBlendOp = pointerToCreateInfo->pColorBlendState->pAttachments[i].alphaBlendOp;
3654 state->blendEquations[i].colorBlendOp = vk::VK_BLEND_OP_ADD;
3655 state->blendEquations[i].alphaBlendOp = vk::VK_BLEND_OP_ADD;
3906 for (const auto& blend : state->blendEquations)
4073 if (!state->blendEquations.empty())
4075 vk.cmdSetColorBlendEquationEXT(cmdBuffer, 0, (deUint32)state->blendEquations.size(), state->blendEquations.data());