blob: 76ed59a2fdeea5b9f7c953bb42fa2d7085e42293 [file] [log] [blame]
Michael Ludwig4f94ef62018-09-12 15:22:16 -04001/*
2 * Copyright 2018 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8/**************************************************************************************************
9 *** This file was autogenerated from GrLinearGradientLayout.fp; do not modify.
10 **************************************************************************************************/
11#ifndef GrLinearGradientLayout_DEFINED
12#define GrLinearGradientLayout_DEFINED
13#include "SkTypes.h"
14
15#include "SkLinearGradient.h"
Michael Ludwig7f8c5242018-09-14 15:07:55 -040016#include "GrGradientShader.h"
Michael Ludwig4f94ef62018-09-12 15:22:16 -040017#include "GrFragmentProcessor.h"
18#include "GrCoordTransform.h"
19class GrLinearGradientLayout : public GrFragmentProcessor {
20public:
21 const SkMatrix44& gradientMatrix() const { return fGradientMatrix; }
22
23 static std::unique_ptr<GrFragmentProcessor> Make(const SkLinearGradient& gradient,
24 const GrFPArgs& args);
25 GrLinearGradientLayout(const GrLinearGradientLayout& src);
26 std::unique_ptr<GrFragmentProcessor> clone() const override;
27 const char* name() const override { return "LinearGradientLayout"; }
28
29private:
30 GrLinearGradientLayout(SkMatrix44 gradientMatrix)
Michael Ludwigb96cba32018-09-14 13:59:24 -040031 : INHERITED(kGrLinearGradientLayout_ClassID,
32 (OptimizationFlags)kPreservesOpaqueInput_OptimizationFlag)
Michael Ludwig4f94ef62018-09-12 15:22:16 -040033 , fGradientMatrix(gradientMatrix)
34 , fCoordTransform0(gradientMatrix) {
35 this->addCoordTransform(&fCoordTransform0);
36 }
37 GrGLSLFragmentProcessor* onCreateGLSLInstance() const override;
38 void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override;
39 bool onIsEqual(const GrFragmentProcessor&) const override;
40 GR_DECLARE_FRAGMENT_PROCESSOR_TEST
41 SkMatrix44 fGradientMatrix;
42 GrCoordTransform fCoordTransform0;
43 typedef GrFragmentProcessor INHERITED;
44};
45#endif