/third_party/flutter/skia/src/gpu/effects/generated/ |
D | GrMixerEffect.cpp | 30 SkString _input0 = SkStringPrintf("%s", args.fInputColor); in emitCode() 34 SkString _input1 = SkStringPrintf("%s", args.fInputColor); in emitCode() 43 args.fInputColor, args.fOutputColor, in emitCode()
|
D | GrPremulInputFragmentProcessor.cpp | 27 fragBuilder->codeAppendf("%s = %s;\n%s.xyz *= %s.w;\n", args.fOutputColor, args.fInputColor, in emitCode() 28 args.fOutputColor, args.fInputColor); in emitCode()
|
D | GrComposeLerpRedEffect.cpp | 42 args.fInputColor, _outer.child2_index >= 0 ? "true" : "false", in emitCode() 43 _sample360.c_str(), args.fInputColor, _sample411.c_str()); in emitCode()
|
D | GrComposeLerpEffect.cpp | 44 _sample290.c_str(), args.fInputColor, in emitCode() 46 args.fInputColor, args.fUniformHandler->getUniformCStr(weightVar)); in emitCode()
|
D | GrConstColorProcessor.cpp | 37 args.fOutputColor, args.fInputColor, args.fUniformHandler->getUniformCStr(colorVar), in emitCode() 38 args.fOutputColor, args.fInputColor, in emitCode()
|
D | GrCircleEffect.cpp | 48 (int)_outer.edgeType, (int)_outer.edgeType, args.fOutputColor, args.fInputColor, in emitCode() 49 args.fOutputColor, args.fInputColor); in emitCode()
|
D | GrLumaColorFilterEffect.cpp | 29 args.fInputColor, args.fOutputColor); in emitCode()
|
D | GrBlurredEdgeFragmentProcessor.cpp | 34 args.fInputColor, (int)_outer.mode, args.fOutputColor); in emitCode()
|
D | GrConfigConversionEffect.cpp | 35 args.fOutputColor, args.fInputColor, (int)_outer.pmConversion, args.fOutputColor, in emitCode()
|
D | GrSimpleTextureEffect.cpp | 30 "%s = %s * sample(%s, %s).%s;\n", args.fOutputColor, args.fInputColor, in emitCode()
|
/third_party/skia/src/gpu/effects/ |
D | GrSkSLFP.cpp | 40 , fInputColor(inputColor) in emitCode() 140 return String(fSelf->invokeChild(index, fInputColor, fArgs, coords).c_str()); in emitCode() 145 color.empty() ? fInputColor : color.c_str(), in emitCode() 159 const char* fInputColor; in emitCode() member in GrSkSLFP::Impl::emitCode::FPCallbacks 170 args.fInputColor, in emitCode() 198 args.fFragBuilder->codeAppendf("%s = %s;\n", inputColorName.c_str(), args.fInputColor); in emitCode() 202 "half4 %s = %s;\n", inputColorName.c_str(), args.fInputColor); in emitCode() 222 program, coords, args.fInputColor, args.fDestColor, &callbacks); in emitCode()
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrDrawPathOp.cpp | 31 , fInputColor(paint.getColor4f()) in GrDrawPathOpBase() 61 fInputColor, GrProcessorAnalysisCoverage::kNone, clip, &kCoverPass, in doProcessorAnalysis() 62 hasMixedSampledCoverage, caps, clampType, &fInputColor); in doProcessorAnalysis()
|
D | GrDrawPathOp.h | 44 const SkPMColor4f& color() const { return fInputColor; } in color() 60 SkPMColor4f fInputColor; variable
|
/third_party/flutter/skia/src/gpu/glsl/ |
D | GrGLSLXferProcessor.h | 44 , fInputColor(inputColor ? inputColor : "half4(1.0)") in EmitArgs() 56 const char* fInputColor; member
|
D | GrGLSLFragmentProcessor.h | 114 , fInputColor(inputColor ? inputColor : "half4(1.0)") in EmitArgs() 122 const char* fInputColor; member
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrXfermodeFragmentProcessor.cpp | 217 if (args.fInputColor) { in emitCode() 219 fragBuilder->codeAppendf("half4 inputColor = half4(%s.rgb, 1.0);", args.fInputColor); in emitCode() 239 if (args.fInputColor) { in emitCode() 240 fragBuilder->codeAppendf("%s *= %s.a;", args.fOutputColor, args.fInputColor); in emitCode() 448 … GrGLSLBlend::AppendMode(fragBuilder, args.fInputColor, childStr, args.fOutputColor, mode); in emitCode() 450 … GrGLSLBlend::AppendMode(fragBuilder, childStr, args.fInputColor, args.fOutputColor, mode); in emitCode()
|
/third_party/flutter/skia/src/gpu/ |
D | GrFragmentProcessor.cpp | 174 args.fOutputColor, args.fInputColor, swizzle.c_str()); in SwizzleOutput() 238 args.fInputColor); in MakeInputPremulAndMulByOutput() 239 fragBuilder->codeAppendf("%s *= %s.a;", args.fOutputColor, args.fInputColor); in MakeInputPremulAndMulByOutput() 313 this->invokeChild(0, args.fInputColor, &temp, args); in RunInSeries()
|
D | GrColorSpaceXform.cpp | 74 args.fInputColor); in emitCode() 77 fragBuilder->appendColorGamutXform(&xformedColor, args.fInputColor, &fColorSpaceHelper); in emitCode()
|
/third_party/skia/src/gpu/ |
D | GrXferProcessor.h | 304 , fInputColor(inputColor ? inputColor : "half4(1.0)") in GR_MAKE_BITFIELD_CLASS_OPS() 315 const char* fInputColor; in GR_MAKE_BITFIELD_CLASS_OPS() member
|
D | GrFragmentProcessor.h | 507 , fInputColor(inputColor ? inputColor : "half4(1.0)") in EmitArgs() 514 const char* fInputColor; member
|
/third_party/flutter/skia/src/effects/ |
D | SkTableColorFilter.cpp | 297 if (nullptr == args.fInputColor) { in emitCode() 304 fragBuilder->codeAppendf("\t\thalf nonZeroAlpha = max(%s.a, .0001);\n", args.fInputColor); in emitCode() 306 args.fInputColor); in emitCode()
|
D | SkHighContrastFilter.cpp | 248 fragBuilder->codeAppendf("half4 color = %s;", args.fInputColor); in emitCode() 349 fragBuilder->codeAppendf("color.a = %s.a;", args.fInputColor); in emitCode()
|
/third_party/flutter/skia/src/gpu/gradients/generated/ |
D | GrTextureGradientColorizer.cpp | 28 args.fInputColor, args.fOutputColor, in emitCode()
|
D | GrSingleIntervalGradientColorizer.cpp | 35 args.fInputColor, args.fOutputColor, in emitCode()
|
/third_party/flutter/skia/tests/ |
D | GLProgramsTest.cpp | 46 if (args.fInputColor) { in emitCode() 47 fragBuilder->codeAppendf("%s = %s;\n", args.fOutputColor, args.fInputColor); in emitCode()
|