Home | History | Annotate | Download | only in gl

Lines Matching refs:rtConfig

750 bool GrGLCaps::readPixelsSupported(GrPixelConfig rtConfig,
754 // If it's not possible to even have a render target of rtConfig then read pixels is
756 if (!this->isConfigRenderable(rtConfig, false)) {
762 if (!this->getReadPixelsFormat(rtConfig, readConfig, &readFormat, &readType)) {
788 if (kNormalizedFixedPoint_FormatType == fConfigTable[rtConfig].fFormatType) {
793 SkASSERT(kFloat_FormatType == fConfigTable[rtConfig].fFormatType);
799 if (0 == fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat) {
801 const_cast<ReadPixelsFormat*>(&fConfigTable[rtConfig].fSecondReadPixelsFormat);
812 return fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
813 fConfigTable[rtConfig].fSecondReadPixelsFormat.fType == readType;