Searched refs:destBlendFactorAlpha (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/src/Device/ |
D | Context.cpp | 171 activeBlendState.destBlendFactorAlpha = destBlendFactorAlpha(index); in getBlendState() 391 VkBlendFactor Context::destBlendFactorAlpha(int index) const in destBlendFactorAlpha() function in sw::Context 400 return blendState[index].destBlendFactorAlpha; in destBlendFactorAlpha() 409 return blendState[index].destBlendFactorAlpha; in destBlendFactorAlpha() 421 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha() 432 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha() 443 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha() 459 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha() 470 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha() 482 if(destBlendFactorAlpha(index) == VK_BLEND_FACTOR_ZERO) in blendOperationAlpha() [all …]
|
D | Context.hpp | 52 VkBlendFactor destBlendFactorAlpha, in BlendState() 60 , destBlendFactorAlpha(destBlendFactorAlpha) in BlendState() 69 VkBlendFactor destBlendFactorAlpha; member 154 VkBlendFactor destBlendFactorAlpha(int index) const;
|
/external/swiftshader/src/Renderer/ |
D | Context.cpp | 437 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 …]
|
D | Context.hpp | 327 bool setDestBlendFactorAlpha(BlendFactor destBlendFactorAlpha); 371 BlendFactor destBlendFactorAlpha();
|
D | PixelProcessor.hpp | 78 BlendFactor destBlendFactorAlpha : BITS(BLEND_LAST); member 290 void setDestBlendFactorAlpha(BlendFactor destBlendFactorAlpha);
|
D | PixelProcessor.cpp | 846 void PixelProcessor::setDestBlendFactorAlpha(BlendFactor destBlendFactorAlpha) in setDestBlendFactorAlpha() argument 848 context->setDestBlendFactorAlpha(destBlendFactorAlpha); in setDestBlendFactorAlpha() 1020 state.destBlendFactorAlpha = context->destBlendFactorAlpha(); in update()
|
/external/swiftshader/src/Shader/ |
D | PixelRoutine.cpp | 1247 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()
|
/external/swiftshader/src/Pipeline/ |
D | PixelRoutine.cpp | 1186 blendFactorAlpha(destFactor, current, pixel, state.blendState[index].destBlendFactorAlpha); in alphaBlend() 1193 …if(state.blendState[index].destBlendFactorAlpha != VK_BLEND_FACTOR_ONE && state.blendState[index].… in alphaBlend() 2056 blendFactorAlpha(destFactor, oC, pixel, state.blendState[index].destBlendFactorAlpha); in alphaBlend()
|