Home
last modified time | relevance | path

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

/external/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()
/external/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.cpp4689 int GrGLCaps::maxRenderTargetSampleCount(GrGLFormat format) const { in maxRenderTargetSampleCount() function in GrGLCaps
/external/skia/src/gpu/d3d/
DGrD3DCaps.h45 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
46 int maxRenderTargetSampleCount(DXGI_FORMAT) const;
DGrD3DCaps.cpp832 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
874 int GrD3DCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrD3DCaps
879 return this->maxRenderTargetSampleCount(dxgiFormat); in maxRenderTargetSampleCount()
882 int GrD3DCaps::maxRenderTargetSampleCount(DXGI_FORMAT format) const { in maxRenderTargetSampleCount() function in GrD3DCaps
/external/skia/src/gpu/mtl/
DGrMtlCaps.h41 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
42 int maxRenderTargetSampleCount(MTLPixelFormat) const;
DGrMtlCaps.mm444 return sampleCount <= this->maxRenderTargetSampleCount(format);
447 int GrMtlCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { function
448 return this->maxRenderTargetSampleCount(GrBackendFormatAsMTLPixelFormat(format));
451 int GrMtlCaps::maxRenderTargetSampleCount(MTLPixelFormat format) const { function
/external/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()
/external/skia/src/gpu/vk/
DGrVkCaps.h52 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
53 int maxRenderTargetSampleCount(VkFormat format) const;
DGrVkCaps.cpp1457 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
1494 int GrVkCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrVkCaps
1499 return this->maxRenderTargetSampleCount(vkFormat); in maxRenderTargetSampleCount()
1502 int GrVkCaps::maxRenderTargetSampleCount(VkFormat format) const { in maxRenderTargetSampleCount() function in GrVkCaps
/external/skia/src/gpu/dawn/
DGrDawnCaps.h43 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override;
DGrDawnCaps.cpp110 int GrDawnCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrDawnCaps
/external/skia/src/gpu/
DGrCaps.h242 virtual int maxRenderTargetSampleCount(const GrBackendFormat&) const = 0;
247 return std::min(fInternalMultisampleCount, this->maxRenderTargetSampleCount(format)); in internalMultisampleCount()
DGrRecordingContext.cpp60 return this->caps()->maxRenderTargetSampleCount(format); in maxSurfaceSampleCountForColorType()