Home
last modified time | relevance | path

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

12

/aosp_15_r20/external/skia/src/gpu/ganesh/mock/
H A DGrMockCaps.h110 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 DGrMockCaps.cpp15 int GrMockCaps::getRenderTargetSampleCount(int requestCount, GrColorType ct) const { in getRenderTargetSampleCount() function in GrMockCaps
/aosp_15_r20/external/skia/src/gpu/ganesh/d3d/
H A DGrD3DCaps.h44 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
45 int getRenderTargetSampleCount(int requestedCount, DXGI_FORMAT) const;
H A DGrD3DCaps.cpp865 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 DGrMtlCaps.h39 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
40 int getRenderTargetSampleCount(int requestedCount, MTLPixelFormat) const;
H A DGrMtlCaps.mm505 int GrMtlCaps::getRenderTargetSampleCount(int requestedCount, function
509 return this->getRenderTargetSampleCount(requestedCount, mtlFormat);
512 int GrMtlCaps::getRenderTargetSampleCount(int requestedCount, MTLPixelFormat format) const { function
H A DGrMtlGpu.mm780 sampleCnt = caps.getRenderTargetSampleCount(sampleCnt, format);
1177 sampleCnt = this->mtlCaps().getRenderTargetSampleCount(sampleCnt, format);
/aosp_15_r20/external/skia/src/gpu/ganesh/gl/
H A DGrGLCaps.h164 int getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function
166 return this->getRenderTargetSampleCount(requestedCount, in getRenderTargetSampleCount()
169 int getRenderTargetSampleCount(int requestedCount, GrGLFormat) const;
H A DGrGLGpu.cpp870 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 DGrVkCaps.h83 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
84 int getRenderTargetSampleCount(int requestedCount, VkFormat) const;
H A DGrVkCaps.cpp1634 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 DGrVkGpu.cpp1421 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 DProxyTest.cpp198 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 DResourceAllocatorTest.cpp299 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 DResourceCacheTest.cpp207 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 DGrSurfaceResolveTest.cpp235 sampleCount = dc->priv().caps()->getRenderTargetSampleCount(sampleCount, bef); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
H A DProgramsTest.cpp169 int sampleCnt = random->nextBool() ? caps->getRenderTargetSampleCount(2, format) : 1; in random_surface_draw_context()
H A DSurfaceTest.cpp198 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 DDeferredDisplayListTest.cpp700 int availableSamples = caps->getRenderTargetSampleCount(4, format); in DEF_GANESH_TEST_FOR_GL_CONTEXT()
/aosp_15_r20/external/skia/src/gpu/ganesh/
H A DGrContextThreadSafeProxy.cpp99 sampleCnt = fCaps->getRenderTargetSampleCount(sampleCnt, backendFormat); in createCharacterization()
H A DGrProxyProvider.cpp511 renderTargetSampleCnt = caps->getRenderTargetSampleCount(renderTargetSampleCnt, format); in createProxy()
697 sampleCnt = caps->getRenderTargetSampleCount(sampleCnt, backendTex.getBackendFormat()); in wrapRenderableBackendTexture()
H A DGrCaps.h285 virtual int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const = 0;
H A DGrGpu.cpp127 this->caps()->getRenderTargetSampleCount(renderTargetSampleCnt, format); in createTextureCommon()
/aosp_15_r20/external/skia/bench/
H A Dnanobench.cpp585 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 Dskpbench.cpp594 int supportedSampleCount = ctx->priv().caps()->getRenderTargetSampleCount( in main()

12