/aosp_15_r20/external/skia/src/gpu/ganesh/mock/ |
H A D | GrMockCaps.h | 107 return sampleCount <= this->maxRenderTargetSampleCount(format.asMockColorType()); in isFormatRenderable() 122 int maxRenderTargetSampleCount(GrColorType ct) const { in maxRenderTargetSampleCount() function 134 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function 140 return this->maxRenderTargetSampleCount(format.asMockColorType()); in maxRenderTargetSampleCount()
|
/aosp_15_r20/external/skia/src/gpu/ganesh/gl/ |
H A D | GrGLCaps.h | 161 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable() 171 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function 172 return this->maxRenderTargetSampleCount(GrBackendFormats::AsGLFormat(format)); in maxRenderTargetSampleCount() 174 int maxRenderTargetSampleCount(GrGLFormat) const;
|
H A D | GrGLCaps.cpp | 5092 int GrGLCaps::maxRenderTargetSampleCount(GrGLFormat format) const { in maxRenderTargetSampleCount() function in GrGLCaps
|
/aosp_15_r20/external/skia/src/gpu/ganesh/d3d/ |
H A D | GrD3DCaps.h | 47 int maxRenderTargetSampleCount(const GrBackendFormat&) const override; 48 int maxRenderTargetSampleCount(DXGI_FORMAT) const;
|
H A D | GrD3DCaps.cpp | 857 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable() 899 int GrD3DCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrD3DCaps 904 return this->maxRenderTargetSampleCount(dxgiFormat); in maxRenderTargetSampleCount() 907 int GrD3DCaps::maxRenderTargetSampleCount(DXGI_FORMAT format) const { in maxRenderTargetSampleCount() function in GrD3DCaps
|
/aosp_15_r20/external/skia/src/gpu/ganesh/mtl/ |
H A D | GrMtlCaps.h | 42 int maxRenderTargetSampleCount(const GrBackendFormat&) const override; 43 int maxRenderTargetSampleCount(MTLPixelFormat) const;
|
H A D | GrMtlCaps.mm | 488 return sampleCount <= this->maxRenderTargetSampleCount(format); 491 int GrMtlCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { function 492 return this->maxRenderTargetSampleCount(GrBackendFormatAsMTLPixelFormat(format)); 495 int GrMtlCaps::maxRenderTargetSampleCount(MTLPixelFormat format) const { function
|
/aosp_15_r20/external/skia/tests/ |
H A D | VkWrapTests.cpp | 121 if (sampleCnt > gpu->caps()->maxRenderTargetSampleCount(format)) { in wrap_rt_test() 212 int maxSamples = dContext->priv().caps()->maxRenderTargetSampleCount( in wrap_trt_test()
|
/aosp_15_r20/external/skia/src/gpu/ganesh/vk/ |
H A D | GrVkCaps.h | 86 int maxRenderTargetSampleCount(const GrBackendFormat&) const override; 87 int maxRenderTargetSampleCount(VkFormat format) const;
|
H A D | GrVkCaps.cpp | 1631 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable() 1668 int GrVkCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrVkCaps 1673 return this->maxRenderTargetSampleCount(vkFormat); in maxRenderTargetSampleCount() 1676 int GrVkCaps::maxRenderTargetSampleCount(VkFormat format) const { in maxRenderTargetSampleCount() function in GrVkCaps
|
/aosp_15_r20/external/skia/src/gpu/ganesh/ |
H A D | GrCaps.h | 268 virtual int maxRenderTargetSampleCount(const GrBackendFormat&) const = 0; 273 return std::min(fInternalMultisampleCount, this->maxRenderTargetSampleCount(format)); in internalMultisampleCount()
|
H A D | GrContextThreadSafeProxy.cpp | 178 return fCaps->maxRenderTargetSampleCount(format); in maxSurfaceSampleCountForColorType()
|
/aosp_15_r20/external/skia/src/gpu/graphite/mtl/ |
H A D | MtlCaps.h | 97 uint32_t maxRenderTargetSampleCount(MTLPixelFormat) const;
|
H A D | MtlCaps.mm | 1076 return sampleCount <= this->maxRenderTargetSampleCount(format); 1093 uint32_t MtlCaps::maxRenderTargetSampleCount(MTLPixelFormat format) const {
|
/aosp_15_r20/external/skia/src/gpu/graphite/dawn/ |
H A D | DawnCaps.h | 102 uint32_t maxRenderTargetSampleCount(wgpu::TextureFormat format) const;
|
H A D | DawnCaps.cpp | 187 uint32_t DawnCaps::maxRenderTargetSampleCount(wgpu::TextureFormat format) const { in maxRenderTargetSampleCount() function in skgpu::graphite::DawnCaps 200 return sampleCount <= this->maxRenderTargetSampleCount(format); in isRenderable()
|