Lines Matching refs:fProgram
40 , fProgram(NULL) in GrDebugGL()
71 fProgram = NULL; in ~GrDebugGL()
176 if (fProgram) { in useProgram()
177 GrAlwaysAssert(fProgram->getInUse()); in useProgram()
178 fProgram->resetInUse(); in useProgram()
180 GrAlwaysAssert(!fProgram->getDeleted()); in useProgram()
181 fProgram->unref(); in useProgram()
184 fProgram = program; in useProgram()
186 if (fProgram) { in useProgram()
187 GrAlwaysAssert(!fProgram->getDeleted()); in useProgram()
188 fProgram->ref(); in useProgram()
190 GrAlwaysAssert(!fProgram->getInUse()); in useProgram()
191 fProgram->setInUse(); in useProgram()