/third_party/skia/src/gpu/d3d/ |
D | GrD3DCaps.h | 39 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override; 40 bool isFormatRenderable(DXGI_FORMAT, int sampleCount) const;
|
D | GrD3DCaps.cpp | 805 if (!this->isFormatRenderable(dxgiFormat, sampleCount)) { in isFormatAsColorTypeRenderable() 815 bool GrD3DCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { in isFormatRenderable() function in GrD3DCaps 820 return this->isFormatRenderable(dxgiFormat, sampleCount); in isFormatRenderable() 823 bool GrD3DCaps::isFormatRenderable(DXGI_FORMAT format, int sampleCount) const { in isFormatRenderable() function in GrD3DCaps
|
/third_party/flutter/skia/src/gpu/mtl/ |
D | GrMtlCaps.h | 40 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override; 41 bool isFormatRenderable(MTLPixelFormat, int sampleCount) const;
|
D | GrMtlGpu.mm | 536 if (!caps.isFormatRenderable(format, sampleCnt)) { 584 if (!this->mtlCaps().isFormatRenderable(format, sampleCnt)) { 607 if (!fMtlCaps->isFormatRenderable(mtlTexture.pixelFormat, 1) && 664 if (renderable && !fMtlCaps->isFormatRenderable(format, 1)) {
|
D | GrMtlCaps.mm | 303 if (!this->isFormatRenderable(format, sampleCount)) { 315 bool GrMtlCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { function 316 return this->isFormatRenderable(GrBackendFormatAsMTLPixelFormat(format), sampleCount); 319 bool GrMtlCaps::isFormatRenderable(MTLPixelFormat format, int sampleCount) const { function
|
/third_party/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 | 65 if (!gpu->mtlCaps().isFormatRenderable(format, sampleCnt)) {
|
/third_party/flutter/skia/src/gpu/mock/ |
D | GrMockCaps.h | 73 return this->isFormatRenderable(format, sampleCount); 76 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override { in isFormatRenderable() function
|
/third_party/skia/src/gpu/mock/ |
D | GrMockCaps.h | 75 return this->isFormatRenderable(format, sampleCount); 78 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override { in isFormatRenderable() function
|
/third_party/flutter/skia/src/gpu/dawn/ |
D | GrDawnCaps.cpp | 127 bool GrDawnCaps::isFormatRenderable(const GrBackendFormat& format, in isFormatRenderable() function in GrDawnCaps 139 return isFormatRenderable(format, sampleCount); in isFormatAsColorTypeRenderable()
|
D | GrDawnCaps.h | 24 bool isFormatRenderable(const GrBackendFormat& format,
|
/third_party/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,
|
/third_party/flutter/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 | 1255 if (!this->isFormatRenderable(format, sampleCount)) { in isFormatAsColorTypeRenderable() 1269 bool GrVkCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { in isFormatRenderable() function in GrVkCaps 1274 return this->isFormatRenderable(vkFormat, sampleCount); in isFormatRenderable() 1277 bool GrVkCaps::isFormatRenderable(VkFormat format, int sampleCount) const { in isFormatRenderable() function in GrVkCaps
|
/third_party/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 | 1431 if (!this->isFormatRenderable(format, sampleCount)) { in isFormatAsColorTypeRenderable() 1445 bool GrVkCaps::isFormatRenderable(const GrBackendFormat& format, int sampleCount) const { in isFormatRenderable() function in GrVkCaps 1450 return this->isFormatRenderable(vkFormat, sampleCount); in isFormatRenderable() 1453 bool GrVkCaps::isFormatRenderable(VkFormat format, int sampleCount) const { in isFormatRenderable() function in GrVkCaps
|
/third_party/flutter/skia/src/gpu/ |
D | GrGpu.cpp | 277 !caps->isFormatRenderable(backendTex.getBackendFormat(), sampleCnt)) { in wrapRenderableBackendTexture() 297 if (!caps->isFormatRenderable(backendRT.getBackendFormat(), backendRT.sampleCnt())) { in wrapBackendRenderTarget() 316 if (!caps->isFormatRenderable(backendTex.getBackendFormat(), sampleCnt)) { in wrapBackendTextureAsRenderTarget()
|
D | GrCaps.h | 189 virtual bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const = 0;
|
D | GrCaps.cpp | 301 if (!this->isFormatRenderable(format, renderTargetSampleCnt)) { in validateSurfaceParams()
|
/third_party/skia/src/gpu/ |
D | GrCaps.cpp | 326 if (!this->isFormatRenderable(format, renderTargetSampleCnt)) { in validateSurfaceParams() 486 if (format.isValid() && this->isFormatRenderable(format, sampleCnt)) { in getFallbackColorTypeAndFormat()
|
D | GrCaps.h | 243 virtual bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const = 0;
|
/third_party/flutter/skia/src/gpu/gl/ |
D | GrGLCaps.h | 120 bool isFormatRenderable(const GrBackendFormat& format, int sampleCount) const override; 121 bool isFormatRenderable(GrGLFormat format, int sampleCount) const { in isFormatRenderable() function
|
/third_party/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
|
/third_party/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()
|