/* * Copyright 2019 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /************************************************************************************************** *** This file was autogenerated from GrClampFragmentProcessor.fp; do not modify. **************************************************************************************************/ #include "GrClampFragmentProcessor.h" #include "include/gpu/GrTexture.h" #include "src/gpu/glsl/GrGLSLFragmentProcessor.h" #include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h" #include "src/gpu/glsl/GrGLSLProgramBuilder.h" #include "src/sksl/SkSLCPP.h" #include "src/sksl/SkSLUtil.h" class GrGLSLClampFragmentProcessor : public GrGLSLFragmentProcessor { public: GrGLSLClampFragmentProcessor() {} void emitCode(EmitArgs& args) override { GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder; const GrClampFragmentProcessor& _outer = args.fFp.cast(); (void)_outer; auto clampToPremul = _outer.clampToPremul; (void)clampToPremul; fragBuilder->codeAppendf( "@if (%s) {\n half alpha = clamp(%s.w, 0.0, 1.0);\n %s = half4(clamp(%s.xyz, " "0.0, alpha), alpha);\n} else {\n %s = clamp(%s, 0.0, 1.0);\n}\n", (_outer.clampToPremul ? "true" : "false"), args.fInputColor, args.fOutputColor, args.fInputColor, args.fOutputColor, args.fInputColor); } private: void onSetData(const GrGLSLProgramDataManager& pdman, const GrFragmentProcessor& _proc) override {} }; GrGLSLFragmentProcessor* GrClampFragmentProcessor::onCreateGLSLInstance() const { return new GrGLSLClampFragmentProcessor(); } void GrClampFragmentProcessor::onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const { b->add32((int32_t)clampToPremul); } bool GrClampFragmentProcessor::onIsEqual(const GrFragmentProcessor& other) const { const GrClampFragmentProcessor& that = other.cast(); (void)that; if (clampToPremul != that.clampToPremul) return false; return true; } GrClampFragmentProcessor::GrClampFragmentProcessor(const GrClampFragmentProcessor& src) : INHERITED(kGrClampFragmentProcessor_ClassID, src.optimizationFlags()) , clampToPremul(src.clampToPremul) {} std::unique_ptr GrClampFragmentProcessor::clone() const { return std::unique_ptr(new GrClampFragmentProcessor(*this)); } GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrClampFragmentProcessor); #if GR_TEST_UTILS std::unique_ptr GrClampFragmentProcessor::TestCreate(GrProcessorTestData* d) { return GrClampFragmentProcessor::Make(d->fRandom->nextBool()); } #endif