Home
last modified time | relevance | path

Searched refs:maxRenderTargetSampleCount (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/external/skia/src/gpu/ganesh/mock/
H A DGrMockCaps.h107 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 DGrGLCaps.h161 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 DGrGLCaps.cpp5092 int GrGLCaps::maxRenderTargetSampleCount(GrGLFormat format) const { in maxRenderTargetSampleCount() function in GrGLCaps
/aosp_15_r20/external/skia/src/gpu/ganesh/d3d/
H A DGrD3DCaps.h47 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
48 int maxRenderTargetSampleCount(DXGI_FORMAT) const;
H A DGrD3DCaps.cpp857 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 DGrMtlCaps.h42 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
43 int maxRenderTargetSampleCount(MTLPixelFormat) const;
H A DGrMtlCaps.mm488 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 DVkWrapTests.cpp121 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 DGrVkCaps.h86 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
87 int maxRenderTargetSampleCount(VkFormat format) const;
H A DGrVkCaps.cpp1631 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 DGrCaps.h268 virtual int maxRenderTargetSampleCount(const GrBackendFormat&) const = 0;
273 return std::min(fInternalMultisampleCount, this->maxRenderTargetSampleCount(format)); in internalMultisampleCount()
H A DGrContextThreadSafeProxy.cpp178 return fCaps->maxRenderTargetSampleCount(format); in maxSurfaceSampleCountForColorType()
/aosp_15_r20/external/skia/src/gpu/graphite/mtl/
H A DMtlCaps.h97 uint32_t maxRenderTargetSampleCount(MTLPixelFormat) const;
H A DMtlCaps.mm1076 return sampleCount <= this->maxRenderTargetSampleCount(format);
1093 uint32_t MtlCaps::maxRenderTargetSampleCount(MTLPixelFormat format) const {
/aosp_15_r20/external/skia/src/gpu/graphite/dawn/
H A DDawnCaps.h102 uint32_t maxRenderTargetSampleCount(wgpu::TextureFormat format) const;
H A DDawnCaps.cpp187 uint32_t DawnCaps::maxRenderTargetSampleCount(wgpu::TextureFormat format) const { in maxRenderTargetSampleCount() function in skgpu::graphite::DawnCaps
200 return sampleCount <= this->maxRenderTargetSampleCount(format); in isRenderable()