Home
last modified time | relevance | path

Searched refs:readPixelsSupported (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/gl/
DGrGLGpu.h185 bool readPixelsSupported(GrRenderTarget* target, GrPixelConfig readConfig);
190 bool readPixelsSupported(GrPixelConfig renderTargetConfig, GrPixelConfig readConfig);
195 bool readPixelsSupported(GrSurface* surfaceForConfig, GrPixelConfig readConfig);
DGrGLGpu.cpp2182 bool GrGLGpu::readPixelsSupported(GrRenderTarget* target, GrPixelConfig readConfig) { in readPixelsSupported() function in GrGLGpu
2191 return this->glCaps().readPixelsSupported(rtConfig, readConfig, getIntegerv, bindRenderTarget); in readPixelsSupported()
2194 bool GrGLGpu::readPixelsSupported(GrPixelConfig rtConfig, GrPixelConfig readConfig) { in readPixelsSupported() function in GrGLGpu
2211 return this->glCaps().readPixelsSupported(rtConfig, readConfig, getIntegerv, bindRenderTarget); in readPixelsSupported()
2214 bool GrGLGpu::readPixelsSupported(GrSurface* surfaceForConfig, GrPixelConfig readConfig) { in readPixelsSupported() function in GrGLGpu
2216 return this->readPixelsSupported(rt, readConfig); in readPixelsSupported()
2219 return this->readPixelsSupported(config, readConfig); in readPixelsSupported()
2256 if (!this->readPixelsSupported(readConfig, readConfig)) { in onGetReadPixelsInfo()
2273 this->readPixelsSupported(kBGRA_8888_GrPixelConfig, kBGRA_8888_GrPixelConfig)) { in onGetReadPixelsInfo()
2281 this->readPixelsSupported(srcSurface, srcConfig)) { in onGetReadPixelsInfo()
[all …]
DGrGLCaps.h316 bool readPixelsSupported(GrPixelConfig renderTargetConfig,
DGrGLCaps.cpp750 bool GrGLCaps::readPixelsSupported(GrPixelConfig rtConfig, in readPixelsSupported() function in GrGLCaps