Home
last modified time | relevance | path

Searched refs:requestedCount (Results 1 - 12 of 12) sorted by relevance

/third_party/skia/src/gpu/d3d/
H A DGrD3DCaps.h44 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
45 int getRenderTargetSampleCount(int requestedCount, DXGI_FORMAT) const;
H A DGrD3DCaps.cpp832 int GrD3DCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() argument
839 return this->getRenderTargetSampleCount(requestedCount, dxgiFormat); in getRenderTargetSampleCount()
842 int GrD3DCaps::getRenderTargetSampleCount(int requestedCount, DXGI_FORMAT format) const { in getRenderTargetSampleCount() argument
843 requestedCount = std::max(1, requestedCount); in getRenderTargetSampleCount()
853 if (1 == requestedCount) { in getRenderTargetSampleCount()
859 if (info.fColorSampleCounts[i] >= requestedCount) { in getRenderTargetSampleCount()
/third_party/skia/src/gpu/mtl/
H A DGrMtlCaps.h39 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
40 int getRenderTargetSampleCount(int requestedCount, MTLPixelFormat) const;
/third_party/skia/src/gpu/gl/
H A DGrGLCaps.h133 int getRenderTargetSampleCount(int requestedCount,
135 return this->getRenderTargetSampleCount(requestedCount, format.asGLFormat());
137 int getRenderTargetSampleCount(int requestedCount, GrGLFormat) const;
H A DGrGLCaps.cpp4595 int GrGLCaps::getRenderTargetSampleCount(int requestedCount, GrGLFormat format) const { in getRenderTargetSampleCount() argument
4603 requestedCount = std::max(1, requestedCount); in getRenderTargetSampleCount()
4604 if (1 == requestedCount) { in getRenderTargetSampleCount()
4609 if (sampleCount >= requestedCount) { in getRenderTargetSampleCount()
/third_party/skia/src/gpu/dawn/
H A DGrDawnCaps.h40 int getRenderTargetSampleCount(int requestedCount,
H A DGrDawnCaps.cpp99 int GrDawnCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() argument
/third_party/skia/src/gpu/vk/
H A DGrVkCaps.h50 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
51 int getRenderTargetSampleCount(int requestedCount, VkFormat) const;
H A DGrVkCaps.cpp1500 int GrVkCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() argument
1507 return this->getRenderTargetSampleCount(requestedCount, vkFormat); in getRenderTargetSampleCount()
1510 int GrVkCaps::getRenderTargetSampleCount(int requestedCount, VkFormat format) const { in getRenderTargetSampleCount() argument
1511 requestedCount = std::max(1, requestedCount); in getRenderTargetSampleCount()
1521 if (1 == requestedCount) { in getRenderTargetSampleCount()
1527 if (info.fColorSampleCounts[i] >= requestedCount) { in getRenderTargetSampleCount()
/third_party/skia/src/gpu/
H A DGrCaps.h248 // For historical reasons requestedCount==0 is handled identically to requestedCount==1.
249 virtual int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const = 0;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_utils.cpp1652 GLuint GetSampleCount(VkSampleCountFlags supportedCounts, GLuint requestedCount) in GetSampleCount() argument
1657 if (sampleCount >= requestedCount) in GetSampleCount()
H A Dvk_utils.h1087 GLuint GetSampleCount(VkSampleCountFlags supportedCounts, GLuint requestedCount);

Completed in 24 milliseconds