skia2/tests/sksl/fp/golden/GrSectionMake.h
John Stiles bead7e324a Remove GrFragmentProcessor::usesExplicitReturn.
All fragment processors now use explicit returns; sk_OutColor no longer
exists at all.

Change-Id: Ic5cf566a916c1d616edcc56ba84b6780776f8515
Bug: skia:10549
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/344300
Commit-Queue: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
2020-12-15 18:06:12 +00:00

34 lines
1.1 KiB
C++

/**************************************************************************************************
*** This file was autogenerated from GrSectionMake.fp; do not modify.
**************************************************************************************************/
#ifndef GrSectionMake_DEFINED
#define GrSectionMake_DEFINED
#include "include/core/SkM44.h"
#include "include/core/SkTypes.h"
#include "src/gpu/GrFragmentProcessor.h"
class GrSectionMake : public GrFragmentProcessor {
public:
make section GrSectionMake(const GrSectionMake& src);
std::unique_ptr<GrFragmentProcessor> clone() const override;
const char* name() const override { return "SectionMake"; }
private:
GrSectionMake()
: INHERITED(kGrSectionMake_ClassID, kNone_OptimizationFlags) {
}
GrGLSLFragmentProcessor* onCreateGLSLInstance() const override;
void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override;
bool onIsEqual(const GrFragmentProcessor&) const override;
#if GR_TEST_UTILS
SkString onDumpInfo() const override;
#endif
GR_DECLARE_FRAGMENT_PROCESSOR_TEST
using INHERITED = GrFragmentProcessor;
};
#endif