Home | History | Annotate | Download | only in gl

Lines Matching refs:readFormat

981     GrGLenum readFormat;
983 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
995 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
996 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
997 readFormat != GR_GL_RGBA_INTEGER) {
1014 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
1019 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
1024 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
1044 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&