Searched refs:destFactor (Results 1 - 2 of 2) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | PixelRoutine.cpp | 1183 Vector4s destFactor; in alphaBlend() local 1186 blendFactor(destFactor, current, pixel, state.destBlendFactor); in alphaBlend() 1197 pixel.x = MulHigh(As<UShort4>(pixel.x), As<UShort4>(destFactor.x)); in alphaBlend() 1198 pixel.y = MulHigh(As<UShort4>(pixel.y), As<UShort4>(destFactor.y)); in alphaBlend() 1199 pixel.z = MulHigh(As<UShort4>(pixel.z), As<UShort4>(destFactor.z)); in alphaBlend() 1247 blendFactorAlpha(destFactor, current, pixel, state.destBlendFactorAlpha); in alphaBlend() 1256 pixel.w = MulHigh(As<UShort4>(pixel.w), As<UShort4>(destFactor.w)); in alphaBlend() 2120 Vector4f destFactor; in alphaBlend() local 2123 blendFactor(destFactor, oC, pixel, state.destBlendFactor); in alphaBlend() 2134 pixel.x *= destFactor in alphaBlend() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | PixelRoutine.cpp | 2443 Vector4f destFactor; in alphaBlend() local 2446 blendFactorRGB(destFactor, sourceColor, destColor, state.blendState[index].destBlendFactor, format); in alphaBlend() 2448 blendFactorAlpha(destFactor.w, sourceColor.w, destColor.w, state.blendState[index].destBlendFactorAlpha, format); in alphaBlend() 2455 blendedColor.x = sourceColor.x * sourceFactor.x + destColor.x * destFactor.x; in alphaBlend() 2456 blendedColor.y = sourceColor.y * sourceFactor.y + destColor.y * destFactor.y; in alphaBlend() 2457 blendedColor.z = sourceColor.z * sourceFactor.z + destColor.z * destFactor.z; in alphaBlend() 2460 blendedColor.x = sourceColor.x * sourceFactor.x - destColor.x * destFactor.x; in alphaBlend() 2461 blendedColor.y = sourceColor.y * sourceFactor.y - destColor.y * destFactor.y; in alphaBlend() 2462 blendedColor.z = sourceColor.z * sourceFactor.z - destColor.z * destFactor.z; in alphaBlend() 2465 blendedColor.x = destColor.x * destFactor in alphaBlend() [all...] |
Completed in 6 milliseconds