Lines Matching refs:blendState
455 const VkPipelineColorBlendAttachmentState& blendState = m_blendStates[quadNdx];
456 if (blendState.srcColorBlendFactor == VK_BLEND_FACTOR_CONSTANT_ALPHA ||
457 blendState.dstColorBlendFactor == VK_BLEND_FACTOR_CONSTANT_ALPHA ||
458 blendState.srcColorBlendFactor == VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA ||
459 blendState.dstColorBlendFactor == VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA)
1097 const VkPipelineColorBlendAttachmentState& blendState = m_blendStates[quadNdx];
1102 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor);
1103 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor);
1104 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp);
1105 renderState.fragOps.blendAState.srcFunc = mapVkBlendFactor(blendState.srcAlphaBlendFactor);
1106 renderState.fragOps.blendAState.dstFunc = mapVkBlendFactor(blendState.dstAlphaBlendFactor);
1107 renderState.fragOps.blendAState.equation = mapVkBlendOp(blendState.alphaBlendOp);
1512 const VkPipelineColorBlendAttachmentState& blendState = m_blendStates[quadNdx];
1517 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor);
1518 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor);
1519 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp);
1520 renderState.fragOps.blendAState.srcFunc = mapVkBlendFactor(blendState.srcAlphaBlendFactor);
1521 renderState.fragOps.blendAState.dstFunc = mapVkBlendFactor(blendState.dstAlphaBlendFactor);
1522 renderState.fragOps.blendAState.equation = mapVkBlendOp(blendState.alphaBlendOp);
2010 std::string getBlendStateName (const VkPipelineColorBlendAttachmentState& blendState)
2046 shortName << "color_" << shortBlendFactorNames[blendState.srcColorBlendFactor] << "_" << shortBlendFactorNames[blendState.dstColorBlendFactor] << "_" << blendOpNames[blendState.colorBlendOp];
2047 shortName << "_alpha_" << shortBlendFactorNames[blendState.srcAlphaBlendFactor] << "_" << shortBlendFactorNames[blendState.dstAlphaBlendFactor] << "_" << blendOpNames[blendState.alphaBlendOp];