/external/skia/src/gpu/d3d/ |
D | GrD3DCaps.h | 38 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override; 39 bool isFormatRenderable(DXGI_FORMAT, int sampleCount) const;
|
D | GrD3DCaps.cpp | 800 if (!this->isFormatRenderable(dxgiFormat, sampleCount)) { in isFormatAsColorTypeRenderable() 810 bool GrD3DCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { in isFormatRenderable() function in GrD3DCaps 815 return this->isFormatRenderable(dxgiFormat, sampleCount); in isFormatRenderable() 818 bool GrD3DCaps::isFormatRenderable(DXGI_FORMAT format, int sampleCount) const { in isFormatRenderable() function in GrD3DCaps
|
D | GrD3DGpu.cpp | 779 if (!caps.isFormatRenderable(info.fFormat, sampleCnt)) { in check_rt_resource_info() 1086 if (renderable == GrRenderable::kYes && !this->d3dCaps().isFormatRenderable(dxgiFormat, 1)) { in createTextureResourceForBackendSurface()
|
/external/skia/src/gpu/mtl/ |
D | GrMtlCaps.h | 36 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override; 37 bool isFormatRenderable(MTLPixelFormat, int sampleCount) const;
|
D | GrMtlRenderTarget.mm | 78 if (!gpu->mtlCaps().isFormatRenderable(format, sampleCnt)) {
|
D | GrMtlTextureRenderTarget.mm | 68 if (!gpu->mtlCaps().isFormatRenderable(format, sampleCnt)) {
|
D | GrMtlCaps.mm | 386 if (!this->isFormatRenderable(format, sampleCount)) { 398 bool GrMtlCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { function 399 return this->isFormatRenderable(GrBackendFormatAsMTLPixelFormat(format), sampleCount); 402 bool GrMtlCaps::isFormatRenderable(MTLPixelFormat format, int sampleCount) const { function
|
D | GrMtlGpu.mm | 784 if (!caps.isFormatRenderable(format, sampleCnt)) { 800 if (!this->caps()->isFormatRenderable(backendRT.getBackendFormat(), backendRT.sampleCnt())) { 822 if (!fMtlCaps->isFormatRenderable(mtlTexture.pixelFormat, 1) && 896 if (renderable == GrRenderable::kYes && !fMtlCaps->isFormatRenderable(mtlFormat, 1)) {
|
/external/skia/src/gpu/dawn/ |
D | GrDawnCaps.cpp | 72 bool GrDawnCaps::isFormatRenderable(const GrBackendFormat& format, in isFormatRenderable() function in GrDawnCaps 84 return isFormatRenderable(format, sampleCount); in isFormatAsColorTypeRenderable()
|
D | GrDawnCaps.h | 22 bool isFormatRenderable(const GrBackendFormat& format,
|
/external/skia/src/gpu/mock/ |
D | GrMockCaps.h | 76 return this->isFormatRenderable(format, sampleCount); 79 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override { in isFormatRenderable() function
|
/external/skia/src/gpu/vk/ |
D | GrVkCaps.h | 47 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override; 48 bool isFormatRenderable(VkFormat, int sampleCount) const;
|
D | GrVkCaps.cpp | 1433 if (!this->isFormatRenderable(format, sampleCount)) { in isFormatAsColorTypeRenderable() 1447 bool GrVkCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { in isFormatRenderable() function in GrVkCaps 1452 return this->isFormatRenderable(vkFormat, sampleCount); in isFormatRenderable() 1455 bool GrVkCaps::isFormatRenderable(VkFormat format, int sampleCount) const { in isFormatRenderable() function in GrVkCaps
|
D | GrVkGpu.cpp | 1234 if (!caps.isFormatRenderable(info.fFormat, info.fSampleCount)) { in check_rt_image_info() 1486 SkASSERT(this->vkCaps().isFormatRenderable(pixelFormat, numSamples)); in makeMSAAAttachment()
|
/external/skia/src/gpu/gl/ |
D | GrGLCaps.h | 128 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override; 129 bool isFormatRenderable(GrGLFormat format, int sampleCount) const { in isFormatRenderable() function
|
D | GrGLGpu.cpp | 670 if (this->glCaps().isFormatRenderable(backendTex.getBackendFormat(), 1)) { in onWrapBackendTexture() 738 SkASSERT(caps.isFormatRenderable(desc.fFormat, sampleCnt)); in onWrapRenderableBackendTexture() 783 if (!this->glCaps().isFormatRenderable(format, backendRT.sampleCnt())) { in onWrapBackendRenderTarget() 2108 if (!renderTarget && !this->glCaps().isFormatRenderable(format, 1)) { in readOrTransferPixelsFrom() 3303 if (!this->glCaps().isFormatRenderable(dstTex->format(), 1)) { in copySurfaceAsDraw() 3440 if (!this->glCaps().doManualMipmapping() || !this->glCaps().isFormatRenderable(format, 1)) { in onRegenerateMipMapLevels()
|
D | GrGLCaps.cpp | 3326 return this->isFormatRenderable(dstFormat, 1) && srcIsTexturable; in canCopyAsDraw() 4311 return this->isFormatRenderable(f, sampleCount); in isFormatAsColorTypeRenderable() 4314 bool GrGLCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { in isFormatRenderable() function in GrGLCaps 4321 return this->isFormatRenderable(format.asGLFormat(), sampleCount); in isFormatRenderable()
|
/external/skia/tests/ |
D | GrSurfaceTest.cpp | 153 bool isRenderable = caps->isFormatRenderable(combo.fFormat, 1); in DEF_GPUTEST_FOR_ALL_CONTEXTS() 166 bool isRenderable = caps->isFormatRenderable(combo.fFormat, 2); in DEF_GPUTEST_FOR_ALL_CONTEXTS()
|
D | ReadWritePixelsGpuTest.cpp | 490 !caps.isFormatRenderable(surface->asSurfaceProxy()->backendFormat(), 1)) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/external/skia/src/gpu/ |
D | GrCaps.h | 236 virtual bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const = 0;
|
D | GrCaps.cpp | 313 if (!this->isFormatRenderable(format, renderTargetSampleCnt)) { in validateSurfaceParams()
|
D | GrGpu.cpp | 312 !caps->isFormatRenderable(backendTex.getBackendFormat(), sampleCnt)) { in wrapRenderableBackendTexture() 334 if (!caps->isFormatRenderable(backendRT.getBackendFormat(), backendRT.sampleCnt())) { in wrapBackendRenderTarget()
|
D | GrSurfaceFillContext.cpp | 60 if (format.isValid() && caps->isFormatRenderable(format, sampleCnt)) { in GetFallbackColorTypeAndFormat()
|