/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | PixelRoutine.cpp | 1827 void PixelRoutine::blendFactorRGB(Vector4f &blendFactor, const Vector4f &sourceColor, const Vector4f &destColor, VkBlendFactor colorBlendFactor, vk::Format format) in blendFactorRGB() argument 1852 blendFactor.x = destColor.x; in blendFactorRGB() 1853 blendFactor.y = destColor.y; in blendFactorRGB() 1854 blendFactor.z = destColor.z; in blendFactorRGB() 1857 blendFactor.x = Float4(1.0f) - destColor.x; in blendFactorRGB() 1858 blendFactor.y = Float4(1.0f) - destColor.y; in blendFactorRGB() 1859 blendFactor.z = Float4(1.0f) - destColor.z; in blendFactorRGB() 1872 blendFactor.x = destColor.w; in blendFactorRGB() 1873 blendFactor.y = destColor.w; in blendFactorRGB() 1874 blendFactor.z = destColor in blendFactorRGB() 2287 Vector4f destColor; alphaBlend() local [all...] |
H A D | PixelRoutine.hpp | 79 void blendFactorRGB(Vector4f &blendFactorRGB, const Vector4f &sourceColor, const Vector4f &destColor, VkBlendFactor colorBlendFactor, vk::Format format);
|
/third_party/skia/src/gpu/ |
H A D | GrFragmentProcessor.cpp | 927 const char* destColor, 946 if (!destColor) { 947 destColor = args.fFp.isBlendFunction() ? args.fDestColor : "half4(1)"; 949 invocation.appendf(", %s", destColor); 968 const char* destColor, 994 if (!destColor) { 995 destColor = args.fFp.isBlendFunction() ? args.fDestColor : "half4(1)"; 997 invocation.appendf(", %s", destColor);
|
H A D | GrFragmentProcessor.h | 505 @param destColor A half4 that holds the dest color to the stage. Only meaningful 516 const char* destColor, in EmitArgs() 523 , fDestColor(destColor) in EmitArgs() 560 /*destColor=*/nullptr, in invokeChild() 568 /*destColor=*/nullptr, in invokeChildWithMatrix() 579 /*destColor=*/nullptr, in invokeChild() 589 /*destColor=*/nullptr, in invokeChildWithMatrix() 606 const char* destColor, 617 const char* destColor,
|
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLPipelineStageCodeGenerator.h | 44 * - Any reference to the dest color builtin variable will be replaced with 'destColor'. 56 const char* destColor,
|
H A D | SkSLVMCodeGenerator.h | 57 skvm::Color destColor,
|
H A D | SkSLPipelineStageCodeGenerator.cpp | 51 const char* destColor, in PipelineStageCodeGenerator() 56 , fDestColor(destColor) in PipelineStageCodeGenerator() 766 const char* destColor, in ConvertProgram() 768 PipelineStageCodeGenerator generator(program, sampleCoords, inputColor, destColor, callbacks); in ConvertProgram() 48 PipelineStageCodeGenerator(const Program& program, const char* sampleCoords, const char* inputColor, const char* destColor, Callbacks* callbacks) PipelineStageCodeGenerator() argument 763 ConvertProgram(const Program& program, const char* sampleCoords, const char* inputColor, const char* destColor, Callbacks* callbacks) ConvertProgram() argument
|
H A D | SkSLVMCodeGenerator.cpp | 1816 skvm::Color destColor, 1844 args[argSlots++] = destColor.r.id; 1845 args[argSlots++] = destColor.g.id; 1846 args[argSlots++] = destColor.b.id; 1847 args[argSlots++] = destColor.a.id; 2051 skvm::Color destColor = builder->uniformColor(SkColors::kBlack, &uniforms); 2055 destColor, sampleShader, /*sampleColorFilter=*/nullptr,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | renderer_utils.cpp | 130 gl::ColorUI destColor( in WriteUintColor() 133 colorWriteFunction(reinterpret_cast<const uint8_t *>(&destColor), destPixelData); in WriteUintColor()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | CopyTextureTest.cpp | 255 GLColor *destColor) in calculateCopyTextureResults() 313 *destColor = color; in calculateCopyTextureResults() 250 calculateCopyTextureResults(GLenum sourceFormat, GLenum destFormat, bool premultiplyAlpha, bool unmultiplyAlpha, const uint8_t *sourceColor, GLColor *destColor) calculateCopyTextureResults() argument
|