Home
last modified time | relevance | path

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

/third_party/flutter/skia/src/gpu/mock/
DGrMockCaps.h77 return sampleCount <= this->maxRenderTargetSampleCount(format.asMockColorType()); in isFormatRenderable()
99 int maxRenderTargetSampleCount(GrColorType ct) const { in maxRenderTargetSampleCount() function
111 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function
112 return this->maxRenderTargetSampleCount(format.asMockColorType()); in maxRenderTargetSampleCount()
/third_party/skia/src/gpu/mock/
DGrMockCaps.h83 return sampleCount <= this->maxRenderTargetSampleCount(format.asMockColorType()); in isFormatRenderable()
98 int maxRenderTargetSampleCount(GrColorType ct) const { in maxRenderTargetSampleCount() function
110 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function
116 return this->maxRenderTargetSampleCount(format.asMockColorType()); in maxRenderTargetSampleCount()
/third_party/flutter/skia/src/gpu/gl/
DGrGLCaps.h122 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
131 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function
132 return this->maxRenderTargetSampleCount(format.asGLFormat()); in maxRenderTargetSampleCount()
134 int maxRenderTargetSampleCount(GrGLFormat) const;
DGrGLCaps.cpp3828 int GrGLCaps::maxRenderTargetSampleCount(GrGLFormat format) const { in maxRenderTargetSampleCount() function in GrGLCaps
/third_party/skia/src/gpu/gl/
DGrGLCaps.h130 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
139 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function
140 return this->maxRenderTargetSampleCount(format.asGLFormat()); in maxRenderTargetSampleCount()
142 int maxRenderTargetSampleCount(GrGLFormat) const;
DGrGLCaps.cpp4564 int GrGLCaps::maxRenderTargetSampleCount(GrGLFormat format) const { in maxRenderTargetSampleCount() function in GrGLCaps
/third_party/skia/src/gpu/d3d/
DGrD3DCaps.h47 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
48 int maxRenderTargetSampleCount(DXGI_FORMAT) const;
DGrD3DCaps.cpp824 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
866 int GrD3DCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrD3DCaps
871 return this->maxRenderTargetSampleCount(dxgiFormat); in maxRenderTargetSampleCount()
874 int GrD3DCaps::maxRenderTargetSampleCount(DXGI_FORMAT format) const { in maxRenderTargetSampleCount() function in GrD3DCaps
/third_party/flutter/skia/src/gpu/mtl/
DGrMtlCaps.h46 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
47 int maxRenderTargetSampleCount(MTLPixelFormat) const;
DGrMtlCaps.mm320 return sampleCount <= this->maxRenderTargetSampleCount(format);
323 int GrMtlCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { function
324 return this->maxRenderTargetSampleCount(GrBackendFormatAsMTLPixelFormat(format));
327 int GrMtlCaps::maxRenderTargetSampleCount(MTLPixelFormat format) const { function
/third_party/skia/src/gpu/mtl/
DGrMtlCaps.h42 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
43 int maxRenderTargetSampleCount(MTLPixelFormat) const;
DGrMtlCaps.mm443 return sampleCount <= this->maxRenderTargetSampleCount(format);
446 int GrMtlCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { function
447 return this->maxRenderTargetSampleCount(GrBackendFormatAsMTLPixelFormat(format));
450 int GrMtlCaps::maxRenderTargetSampleCount(MTLPixelFormat format) const { function
/third_party/flutter/skia/src/gpu/vk/
DGrVkCaps.h53 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
54 int maxRenderTargetSampleCount(VkFormat format) const;
DGrVkCaps.cpp1278 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
1315 int GrVkCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrVkCaps
1320 return this->maxRenderTargetSampleCount(vkFormat); in maxRenderTargetSampleCount()
1323 int GrVkCaps::maxRenderTargetSampleCount(VkFormat format) const { in maxRenderTargetSampleCount() function in GrVkCaps
/third_party/skia/tests/
DVkWrapTests.cpp101 if (sampleCnt > gpu->caps()->maxRenderTargetSampleCount(format)) { in wrap_rt_test()
186 int maxSamples = dContext->priv().caps()->maxRenderTargetSampleCount( in wrap_trt_test()
/third_party/flutter/skia/src/gpu/
DGrCaps.h178 virtual int maxRenderTargetSampleCount(const GrBackendFormat&) const = 0;
183 return SkTMin(fInternalMultisampleCount, this->maxRenderTargetSampleCount(format)); in internalMultisampleCount()
DGrContext.cpp246 return this->caps()->maxRenderTargetSampleCount(format); in maxSurfaceSampleCountForColorType()
/third_party/skia/src/gpu/vk/
DGrVkCaps.h53 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
54 int maxRenderTargetSampleCount(VkFormat format) const;
DGrVkCaps.cpp1454 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
1491 int GrVkCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrVkCaps
1496 return this->maxRenderTargetSampleCount(vkFormat); in maxRenderTargetSampleCount()
1499 int GrVkCaps::maxRenderTargetSampleCount(VkFormat format) const { in maxRenderTargetSampleCount() function in GrVkCaps
/third_party/skia/src/gpu/dawn/
DGrDawnCaps.h43 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override;
DGrDawnCaps.cpp108 int GrDawnCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrDawnCaps
/third_party/flutter/skia/src/gpu/dawn/
DGrDawnCaps.h47 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override;
DGrDawnCaps.cpp151 int GrDawnCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrDawnCaps
/third_party/skia/src/gpu/
DGrCaps.h232 virtual int maxRenderTargetSampleCount(const GrBackendFormat&) const = 0;
237 return std::min(fInternalMultisampleCount, this->maxRenderTargetSampleCount(format)); in internalMultisampleCount()
DGrRecordingContext.cpp60 return this->caps()->maxRenderTargetSampleCount(format); in maxSurfaceSampleCountForColorType()