Home
last modified time | relevance | path

Searched refs:destBlendFactor (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DContext.cpp409 bool Context::setDestBlendFactor(BlendFactor destBlendFactor) in setDestBlendFactor() argument
411 bool modified = (Context::destBlendFactorState != destBlendFactor); in setDestBlendFactor()
412 Context::destBlendFactorState = destBlendFactor; in setDestBlendFactor()
791 BlendFactor Context::destBlendFactor() in destBlendFactor() function in sw::Context
821 if(destBlendFactor() == BLEND_ZERO) in blendOperation()
832 if(destBlendFactor() == BLEND_ZERO) in blendOperation()
843 if(destBlendFactor() == BLEND_ZERO) in blendOperation()
859 if(destBlendFactor() == BLEND_ZERO) in blendOperation()
870 if(destBlendFactor() == BLEND_ZERO) in blendOperation()
882 if(destBlendFactor() == BLEND_ZERO) in blendOperation()
[all …]
DContext.hpp322 bool setDestBlendFactor(BlendFactor destBlendFactor);
367 BlendFactor destBlendFactor();
DPixelProcessor.hpp76 BlendFactor destBlendFactor : BITS(BLEND_LAST); member
289 void setDestBlendFactor(BlendFactor destBlendFactor);
DPixelProcessor.cpp839 void PixelProcessor::setDestBlendFactor(BlendFactor destBlendFactor) in setDestBlendFactor() argument
841 context->setDestBlendFactor(destBlendFactor); in setDestBlendFactor()
1030 state.destBlendFactor = context->destBlendFactor(); in update()
/third_party/skia/third_party/externals/swiftshader/src/Device/
DContext.cpp709 activeBlendState.destBlendFactor = destBlendFactor(index); in getBlendState()
776 VkBlendFactor GraphicsState::destBlendFactor(int index) const in destBlendFactor() function in vk::GraphicsState
787 return blendState[index].destBlendFactor; in destBlendFactor()
810 return blendState[index].destBlendFactor; in destBlendFactor()
824 if(destBlendFactor(index) == VK_BLEND_FACTOR_ZERO) in blendOperation()
835 if(destBlendFactor(index) == VK_BLEND_FACTOR_ZERO) in blendOperation()
846 if(destBlendFactor(index) == VK_BLEND_FACTOR_ZERO) in blendOperation()
862 if(destBlendFactor(index) == VK_BLEND_FACTOR_ZERO) in blendOperation()
873 if(destBlendFactor(index) == VK_BLEND_FACTOR_ZERO) in blendOperation()
885 if(destBlendFactor(index) == VK_BLEND_FACTOR_ZERO) in blendOperation()
[all …]
DContext.hpp95 VkBlendFactor destBlendFactor, in BlendState()
103 , destBlendFactor(destBlendFactor) in BlendState()
112 VkBlendFactor destBlendFactor; member
198 VkBlendFactor destBlendFactor(int index) const;
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DPixelRoutine.cpp1186 blendFactor(destFactor, current, pixel, state.destBlendFactor); in alphaBlend()
1195 if(state.destBlendFactor != BLEND_ONE && state.destBlendFactor != BLEND_ZERO) in alphaBlend()
2123 blendFactor(destFactor, oC, pixel, state.destBlendFactor); in alphaBlend()
2132 if(state.destBlendFactor != BLEND_ONE && state.destBlendFactor != BLEND_ZERO) in alphaBlend()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DPixelRoutine.cpp2446 …blendFactorRGB(destFactor, sourceColor, destColor, state.blendState[index].destBlendFactor, format… in alphaBlend()