Searched refs:requestedCount (Results 1 - 12 of 12) sorted by relevance
/third_party/skia/src/gpu/d3d/ |
H A D | GrD3DCaps.h | 44 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override; 45 int getRenderTargetSampleCount(int requestedCount, DXGI_FORMAT) const;
|
H A D | GrD3DCaps.cpp | 832 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 D | GrMtlCaps.h | 39 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override; 40 int getRenderTargetSampleCount(int requestedCount, MTLPixelFormat) const;
|
/third_party/skia/src/gpu/gl/ |
H A D | GrGLCaps.h | 133 int getRenderTargetSampleCount(int requestedCount, 135 return this->getRenderTargetSampleCount(requestedCount, format.asGLFormat()); 137 int getRenderTargetSampleCount(int requestedCount, GrGLFormat) const;
|
H A D | GrGLCaps.cpp | 4595 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 D | GrDawnCaps.h | 40 int getRenderTargetSampleCount(int requestedCount,
|
H A D | GrDawnCaps.cpp | 99 int GrDawnCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() argument
|
/third_party/skia/src/gpu/vk/ |
H A D | GrVkCaps.h | 50 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override; 51 int getRenderTargetSampleCount(int requestedCount, VkFormat) const;
|
H A D | GrVkCaps.cpp | 1500 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 D | GrCaps.h | 248 // 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 D | vk_utils.cpp | 1652 GLuint GetSampleCount(VkSampleCountFlags supportedCounts, GLuint requestedCount) in GetSampleCount() argument 1657 if (sampleCount >= requestedCount) in GetSampleCount()
|
H A D | vk_utils.h | 1087 GLuint GetSampleCount(VkSampleCountFlags supportedCounts, GLuint requestedCount);
|
Completed in 24 milliseconds