Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DContext.cpp437 bool Context::setDestBlendFactorAlpha(BlendFactor destBlendFactorAlpha) in setDestBlendFactorAlpha() argument
439 bool modified = (Context::destBlendFactorStateAlpha != destBlendFactorAlpha); in setDestBlendFactorAlpha()
440 Context::destBlendFactorStateAlpha = destBlendFactorAlpha; in setDestBlendFactorAlpha()
950 BlendFactor Context::destBlendFactorAlpha() in destBlendFactorAlpha() function in sw::Context
989 if(destBlendFactorAlpha() == BLEND_ZERO) in blendOperationAlpha()
1000 if(destBlendFactorAlpha() == BLEND_ZERO) in blendOperationAlpha()
1011 if(destBlendFactorAlpha() == BLEND_ZERO) in blendOperationAlpha()
1027 if(destBlendFactorAlpha() == BLEND_ZERO) in blendOperationAlpha()
1038 if(destBlendFactorAlpha() == BLEND_ZERO) in blendOperationAlpha()
1050 if(destBlendFactorAlpha() == BLEND_ZERO) in blendOperationAlpha()
[all …]
DContext.hpp327 bool setDestBlendFactorAlpha(BlendFactor destBlendFactorAlpha);
371 BlendFactor destBlendFactorAlpha();
DPixelProcessor.hpp79 BlendFactor destBlendFactorAlpha : BITS(BLEND_LAST); member
294 void setDestBlendFactorAlpha(BlendFactor destBlendFactorAlpha);
DPixelProcessor.cpp859 void PixelProcessor::setDestBlendFactorAlpha(BlendFactor destBlendFactorAlpha) in setDestBlendFactorAlpha() argument
861 context->setDestBlendFactorAlpha(destBlendFactorAlpha); in setDestBlendFactorAlpha()
1033 state.destBlendFactorAlpha = context->destBlendFactorAlpha(); in update()
/third_party/skia/third_party/externals/swiftshader/src/Device/
DContext.cpp712 activeBlendState.destBlendFactorAlpha = destBlendFactorAlpha(index); in getBlendState()
976 VkBlendFactor GraphicsState::destBlendFactorAlpha(int index) const in destBlendFactorAlpha() function in vk::GraphicsState
985 return blendState[index].destBlendFactorAlpha; in destBlendFactorAlpha()
1008 return blendState[index].destBlendFactorAlpha; in destBlendFactorAlpha()
1020 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha()
1031 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha()
1042 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha()
1058 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha()
1069 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha()
1081 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha()
[all …]
DContext.hpp98 VkBlendFactor destBlendFactorAlpha, in BlendState()
106 , destBlendFactorAlpha(destBlendFactorAlpha) in BlendState()
115 VkBlendFactor destBlendFactorAlpha; member
202 VkBlendFactor destBlendFactorAlpha(int index) const;
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DPixelRoutine.cpp1247 blendFactorAlpha(destFactor, current, pixel, state.destBlendFactorAlpha); in alphaBlend()
1254 if(state.destBlendFactorAlpha != BLEND_ONE && state.destBlendFactorAlpha != BLEND_ZERO) in alphaBlend()
2184 blendFactorAlpha(destFactor, oC, pixel, state.destBlendFactorAlpha); in alphaBlend()
2191 if(state.destBlendFactorAlpha != BLEND_ONE && state.destBlendFactorAlpha != BLEND_ZERO) in alphaBlend()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DPixelRoutine.cpp2448 …ha(destFactor.w, sourceColor.w, destColor.w, state.blendState[index].destBlendFactorAlpha, format); in alphaBlend()