Home | History | Annotate | Download | only in atlastext

Lines Matching refs:fProgram

41     bool initialized() const { return 0 != fProgram; }
59 GrGLuint fProgram = 0;
212 fProgram = callgl(CreateProgram);
213 if (!fProgram) {
219 callgl(AttachShader, fProgram, vs);
220 callgl(AttachShader, fProgram, fs);
221 callgl(LinkProgram, fProgram);
223 callgl(GetProgramiv, fProgram, GR_GL_LINK_STATUS, &linkStatus);
233 callgl(DeleteProgram, fProgram);
234 fProgram = 0;
237 fDstScaleAndTranslateLocation = callgl(GetUniformLocation, fProgram, "uDstScaleAndTranslate");
238 fAtlasInvSizeLocation = callgl(GetUniformLocation, fProgram, "uAtlasInvSize");
239 fSamplerLocation = callgl(GetUniformLocation, fProgram, "uSampler");
243 callgl(DeleteProgram, fProgram);
244 fProgram = 0;
341 callgl(UseProgram, fProgram);