18ab2030e3
Rename factory function from createGLSLInstance() to makeProgramImpl() Bug: b/180759848 Bug: skia:11358 Change-Id: I095bdf1f26db5a8192fa8ab59000db4a1d561d96 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/373738 Reviewed-by: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
|
|
|
|
/**************************************************************************************************
|
|
*** This file was autogenerated from GrSectionFields.fp; do not modify.
|
|
**************************************************************************************************/
|
|
#ifndef GrSectionFields_DEFINED
|
|
#define GrSectionFields_DEFINED
|
|
|
|
#include "include/core/SkM44.h"
|
|
#include "include/core/SkTypes.h"
|
|
|
|
|
|
#include "src/gpu/GrFragmentProcessor.h"
|
|
|
|
class GrSectionFields : public GrFragmentProcessor {
|
|
public:
|
|
static std::unique_ptr<GrFragmentProcessor> Make() {
|
|
return std::unique_ptr<GrFragmentProcessor>(new GrSectionFields());
|
|
}
|
|
GrSectionFields(const GrSectionFields& src);
|
|
std::unique_ptr<GrFragmentProcessor> clone() const override;
|
|
const char* name() const override { return "SectionFields"; }
|
|
fields sectionprivate:
|
|
GrSectionFields()
|
|
: INHERITED(kGrSectionFields_ClassID, kNone_OptimizationFlags) {
|
|
}
|
|
std::unique_ptr<GrGLSLFragmentProcessor> onMakeProgramImpl() 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
|