bf3e9e9591
This is completely unused - GrMatrixEffect is the only thing that deals with matrix transforms on child sampling. Removing this makes everything simpler to reason about. Change-Id: I555a3fd937c064f2480b149a6d4d8e36f7ee69bc Reviewed-on: https://skia-review.googlesource.com/c/skia/+/402176 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: Michael Ludwig <michaelludwig@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com>
39 lines
1.7 KiB
C++
39 lines
1.7 KiB
C++
|
|
|
|
/**************************************************************************************************
|
|
*** This file was autogenerated from GrDSLFPTest_Sample.fp; do not modify.
|
|
**************************************************************************************************/
|
|
#ifndef GrDSLFPTest_Sample_DEFINED
|
|
#define GrDSLFPTest_Sample_DEFINED
|
|
|
|
#include "include/core/SkM44.h"
|
|
#include "include/core/SkTypes.h"
|
|
|
|
|
|
#include "src/gpu/GrFragmentProcessor.h"
|
|
|
|
class GrDSLFPTest_Sample : public GrFragmentProcessor {
|
|
public:
|
|
static std::unique_ptr<GrFragmentProcessor> Make(std::unique_ptr<GrFragmentProcessor> fp1, std::unique_ptr<GrFragmentProcessor> fp2) {
|
|
return std::unique_ptr<GrFragmentProcessor>(new GrDSLFPTest_Sample(std::move(fp1), std::move(fp2)));
|
|
}
|
|
GrDSLFPTest_Sample(const GrDSLFPTest_Sample& src);
|
|
std::unique_ptr<GrFragmentProcessor> clone() const override;
|
|
const char* name() const override { return "DSLFPTest_Sample"; }
|
|
private:
|
|
GrDSLFPTest_Sample(std::unique_ptr<GrFragmentProcessor> fp1, std::unique_ptr<GrFragmentProcessor> fp2)
|
|
: INHERITED(kGrDSLFPTest_Sample_ClassID, kNone_OptimizationFlags) {
|
|
this->registerChild(std::move(fp1), SkSL::SampleUsage::PassThrough());
|
|
this->registerChild(std::move(fp2), SkSL::SampleUsage::Explicit());
|
|
}
|
|
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
|