Lines Matching refs:DitherEffect
17 class DitherEffect : public GrFragmentProcessor { class
20 return new DitherEffect; in Create()
23 virtual ~DitherEffect() {}; in ~DitherEffect()
28 DitherEffect() { in DitherEffect() function in DitherEffect
29 this->initClassID<DitherEffect>(); in DitherEffect()
47 void DitherEffect::onComputeInvariantOutput(GrInvariantOutput* inout) const { in onComputeInvariantOutput()
53 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(DitherEffect);
55 const GrFragmentProcessor* DitherEffect::TestCreate(GrProcessorTestData*) { in TestCreate()
56 return DitherEffect::Create(); in TestCreate()
89 void DitherEffect::onGetGLSLProcessorKey(const GrGLSLCaps& caps, in onGetGLSLProcessorKey()
94 GrGLSLFragmentProcessor* DitherEffect::onCreateGLSLInstance() const { in onCreateGLSLInstance()
98 GrFragmentProcessor* GrDitherEffect::Create() { return DitherEffect::Create(); } in Create()