Lines Matching refs:GrGLSLFragmentBuilder
22 class GrGLSLFragmentBuilder : public GrGLSLShaderBuilder {
24 GrGLSLFragmentBuilder(GrGLSLProgramBuilder* program) : INHERITED(program) {}
25 virtual ~GrGLSLFragmentBuilder() {}
59 class GrGLSLFPFragmentBuilder : virtual public GrGLSLFragmentBuilder {
61 /** Appease the compiler; the derived class initializes GrGLSLFragmentBuilder. */
62 GrGLSLFPFragmentBuilder() : GrGLSLFragmentBuilder(nullptr) {}
109 /** Appease the compiler; the derived class initializes GrGLSLFragmentBuilder. */
110 GrGLSLPPFragmentBuilder() : GrGLSLFragmentBuilder(nullptr) {}
130 class GrGLSLXPFragmentBuilder : virtual public GrGLSLFragmentBuilder {
132 /** Appease the compiler; the derived class initializes GrGLSLFragmentBuilder. */
133 GrGLSLXPFragmentBuilder() : GrGLSLFragmentBuilder(nullptr) {}
159 // Shared GrGLSLFragmentBuilder interface.