Searched refs:rtConfig (Results 1 – 2 of 2) sorted by relevance
/external/skia/src/gpu/gl/ |
D | GrGLCaps.cpp | 750 bool GrGLCaps::readPixelsSupported(GrPixelConfig rtConfig, in readPixelsSupported() argument 756 if (!this->isConfigRenderable(rtConfig, false)) { in readPixelsSupported() 762 if (!this->getReadPixelsFormat(rtConfig, readConfig, &readFormat, &readType)) { in readPixelsSupported() 788 if (kNormalizedFixedPoint_FormatType == fConfigTable[rtConfig].fFormatType) { in readPixelsSupported() 793 SkASSERT(kFloat_FormatType == fConfigTable[rtConfig].fFormatType); in readPixelsSupported() 799 if (0 == fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat) { in readPixelsSupported() 801 const_cast<ReadPixelsFormat*>(&fConfigTable[rtConfig].fSecondReadPixelsFormat); in readPixelsSupported() 812 return fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat == readFormat && in readPixelsSupported() 813 fConfigTable[rtConfig].fSecondReadPixelsFormat.fType == readType; in readPixelsSupported()
|
D | GrGLGpu.cpp | 2190 GrPixelConfig rtConfig = target->config(); in readPixelsSupported() local 2191 return this->glCaps().readPixelsSupported(rtConfig, readConfig, getIntegerv, bindRenderTarget); in readPixelsSupported() 2194 bool GrGLGpu::readPixelsSupported(GrPixelConfig rtConfig, GrPixelConfig readConfig) { in readPixelsSupported() argument 2195 auto bindRenderTarget = [this, rtConfig]() -> bool { in readPixelsSupported() 2197 desc.fConfig = rtConfig; in readPixelsSupported() 2211 return this->glCaps().readPixelsSupported(rtConfig, readConfig, getIntegerv, bindRenderTarget); in readPixelsSupported()
|