/aosp_15_r20/external/skia/src/gpu/ganesh/mock/ |
H A D | GrMockCaps.h | 110 int getRenderTargetSampleCount(int requestCount, GrColorType) const; 112 int getRenderTargetSampleCount(int requestCount, in getRenderTargetSampleCount() function 119 return this->getRenderTargetSampleCount(requestCount, format.asMockColorType()); in getRenderTargetSampleCount()
|
H A D | GrMockCaps.cpp | 15 int GrMockCaps::getRenderTargetSampleCount(int requestCount, GrColorType ct) const { in getRenderTargetSampleCount() function in GrMockCaps
|
/aosp_15_r20/external/skia/src/gpu/ganesh/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 | 865 int GrD3DCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function in GrD3DCaps 872 return this->getRenderTargetSampleCount(requestedCount, dxgiFormat); in getRenderTargetSampleCount() 875 int GrD3DCaps::getRenderTargetSampleCount(int requestedCount, DXGI_FORMAT format) const { in getRenderTargetSampleCount() function in GrD3DCaps
|
/aosp_15_r20/external/skia/src/gpu/ganesh/mtl/ |
H A D | GrMtlCaps.h | 39 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override; 40 int getRenderTargetSampleCount(int requestedCount, MTLPixelFormat) const;
|
H A D | GrMtlCaps.mm | 505 int GrMtlCaps::getRenderTargetSampleCount(int requestedCount, function 509 return this->getRenderTargetSampleCount(requestedCount, mtlFormat); 512 int GrMtlCaps::getRenderTargetSampleCount(int requestedCount, MTLPixelFormat format) const { function
|
H A D | GrMtlGpu.mm | 780 sampleCnt = caps.getRenderTargetSampleCount(sampleCnt, format); 1177 sampleCnt = this->mtlCaps().getRenderTargetSampleCount(sampleCnt, format);
|
/aosp_15_r20/external/skia/src/gpu/ganesh/gl/ |
H A D | GrGLCaps.h | 164 int getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function 166 return this->getRenderTargetSampleCount(requestedCount, in getRenderTargetSampleCount() 169 int getRenderTargetSampleCount(int requestedCount, GrGLFormat) const;
|
H A D | GrGLGpu.cpp | 870 sampleCnt = caps.getRenderTargetSampleCount(sampleCnt, desc.fFormat); in onWrapRenderableBackendTexture() 909 int sampleCount = this->glCaps().getRenderTargetSampleCount(backendRT.sampleCnt(), format); in onWrapBackendRenderTarget() 4084 sampleCnt = this->glCaps().getRenderTargetSampleCount(sampleCnt, format); in createTestingOnlyBackendRenderTarget()
|
/aosp_15_r20/external/skia/src/gpu/ganesh/vk/ |
H A D | GrVkCaps.h | 83 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override; 84 int getRenderTargetSampleCount(int requestedCount, VkFormat) const;
|
H A D | GrVkCaps.cpp | 1634 int GrVkCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function in GrVkCaps 1641 return this->getRenderTargetSampleCount(requestedCount, vkFormat); in getRenderTargetSampleCount() 1644 int GrVkCaps::getRenderTargetSampleCount(int requestedCount, VkFormat format) const { in getRenderTargetSampleCount() function in GrVkCaps
|
H A D | GrVkGpu.cpp | 1421 sampleCnt = this->vkCaps().getRenderTargetSampleCount(sampleCnt, imageInfo.fFormat); in onWrapRenderableBackendTexture() 1478 int sampleCnt = this->vkCaps().getRenderTargetSampleCount(1, vkInfo.fFormat); in onWrapVulkanSecondaryCBAsRenderTarget() 1657 sampleCnt = fVkCaps->getRenderTargetSampleCount(sampleCnt, vkFormat); in createVkImageForBackendSurface()
|
/aosp_15_r20/external/skia/tests/ |
H A D | ProxyTest.cpp | 198 caps.getRenderTargetSampleCount(numSamples, format); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 302 int supportedNumSamples = caps.getRenderTargetSampleCount(numSamples, beFormat); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
|
H A D | ResourceAllocatorTest.cpp | 299 int k2 = caps->getRenderTargetSampleCount(2, beFormat); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 300 int k4 = caps->getRenderTargetSampleCount(4, beFormat); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
|
H A D | ResourceCacheTest.cpp | 207 context->priv().caps()->getRenderTargetSampleCount(2, format); 227 int bigSampleCount = context->priv().caps()->getRenderTargetSampleCount(5, format); 1800 size_t sampleCount = (size_t)caps->getRenderTargetSampleCount(4, tex->backendFormat()); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 1823 size_t sampleCount = (size_t)caps->getRenderTargetSampleCount(4, proxy->backendFormat()); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
|
H A D | GrSurfaceResolveTest.cpp | 235 sampleCount = dc->priv().caps()->getRenderTargetSampleCount(sampleCount, bef); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
|
H A D | ProgramsTest.cpp | 169 int sampleCnt = random->nextBool() ? caps->getRenderTargetSampleCount(2, format) : 1; in random_surface_draw_context()
|
H A D | SurfaceTest.cpp | 198 context->priv().caps()->getRenderTargetSampleCount(storedCnt, format); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 232 int allowedCnt = context->priv().caps()->getRenderTargetSampleCount(storedCnt, in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
|
H A D | DeferredDisplayListTest.cpp | 700 int availableSamples = caps->getRenderTargetSampleCount(4, format); in DEF_GANESH_TEST_FOR_GL_CONTEXT()
|
/aosp_15_r20/external/skia/src/gpu/ganesh/ |
H A D | GrContextThreadSafeProxy.cpp | 99 sampleCnt = fCaps->getRenderTargetSampleCount(sampleCnt, backendFormat); in createCharacterization()
|
H A D | GrProxyProvider.cpp | 511 renderTargetSampleCnt = caps->getRenderTargetSampleCount(renderTargetSampleCnt, format); in createProxy() 697 sampleCnt = caps->getRenderTargetSampleCount(sampleCnt, backendTex.getBackendFormat()); in wrapRenderableBackendTexture()
|
H A D | GrCaps.h | 285 virtual int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const = 0;
|
H A D | GrGpu.cpp | 127 this->caps()->getRenderTargetSampleCount(renderTargetSampleCnt, format); in createTextureCommon()
|
/aosp_15_r20/external/skia/bench/ |
H A D | nanobench.cpp | 585 ctx->priv().caps()->getRenderTargetSampleCount(sampleCount, format); in create_config() 628 ctx->priv().caps()->getRenderTargetSampleCount(sampleCount, format); in create_config()
|
/aosp_15_r20/external/skia/tools/skpbench/ |
H A D | skpbench.cpp | 594 int supportedSampleCount = ctx->priv().caps()->getRenderTargetSampleCount( in main()
|