Home | History | Annotate | Download | only in pipeline

Lines Matching refs:blendState

784 			const VkPipelineColorBlendAttachmentState& blendState = m_blendStates[quadNdx];
789 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor);
790 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor);
791 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp);
792 renderState.fragOps.blendAState.srcFunc = mapVkBlendFactor(blendState.srcAlphaBlendFactor);
793 renderState.fragOps.blendAState.dstFunc = mapVkBlendFactor(blendState.dstAlphaBlendFactor);
794 renderState.fragOps.blendAState.equation = mapVkBlendOp(blendState.alphaBlendOp);
880 std::string getBlendStateName (const VkPipelineColorBlendAttachmentState& blendState)
912 shortName << "color_" << shortBlendFactorNames[blendState.srcColorBlendFactor] << "_" << shortBlendFactorNames[blendState.dstColorBlendFactor] << "_" << blendOpNames[blendState.colorBlendOp];
913 shortName << "_alpha_" << shortBlendFactorNames[blendState.srcAlphaBlendFactor] << "_" << shortBlendFactorNames[blendState.dstAlphaBlendFactor] << "_" << blendOpNames[blendState.alphaBlendOp];