Lines Matching defs:fp
112 const GrFragmentProcessor& fp = this->pipeline().getFragmentProcessor(i);
113 this->emitAndInstallFragProc(fp, i, *inOut, &output);
120 void GrGLSLProgramBuilder::emitAndInstallFragProc(const GrFragmentProcessor& fp,
130 openBrace.printf("{ // Stage %d, %s\n", fStageIndex, fp.name());
133 GrGLSLFragmentProcessor* fragProc = fp.createGLSLInstance();
135 SkSTArray<4, GrGLSLTextureSampler> samplers(fp.numTextures());
136 this->emitSamplers(fp, &samplers);
141 fp,
150 verify(fp);
225 void GrGLSLProgramBuilder::verify(const GrFragmentProcessor& fp) {
226 SkASSERT(fFS.hasReadFragmentPosition() == fp.willReadFragmentPosition());