Home
last modified time | relevance | path

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

12

/third_party/skia/src/gpu/mock/
DGrMockCaps.h86 int getRenderTargetSampleCount(int requestCount, GrColorType) const;
88 int getRenderTargetSampleCount(int requestCount, in getRenderTargetSampleCount() function
95 return this->getRenderTargetSampleCount(requestCount, format.asMockColorType()); in getRenderTargetSampleCount()
DGrMockCaps.cpp13 int GrMockCaps::getRenderTargetSampleCount(int requestCount, GrColorType ct) const { in getRenderTargetSampleCount() function in GrMockCaps
/third_party/skia/src/gpu/d3d/
DGrD3DCaps.h44 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
45 int getRenderTargetSampleCount(int requestedCount, DXGI_FORMAT) const;
DGrD3DCaps.cpp832 int GrD3DCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function in GrD3DCaps
839 return this->getRenderTargetSampleCount(requestedCount, dxgiFormat); in getRenderTargetSampleCount()
842 int GrD3DCaps::getRenderTargetSampleCount(int requestedCount, DXGI_FORMAT format) const { in getRenderTargetSampleCount() function in GrD3DCaps
/third_party/skia/src/gpu/mtl/
DGrMtlCaps.h39 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
40 int getRenderTargetSampleCount(int requestedCount, MTLPixelFormat) const;
DGrMtlCaps.mm460 int GrMtlCaps::getRenderTargetSampleCount(int requestedCount, function
464 return this->getRenderTargetSampleCount(requestedCount, mtlFormat);
467 int GrMtlCaps::getRenderTargetSampleCount(int requestedCount, MTLPixelFormat format) const { function
/third_party/skia/src/gpu/gl/
DGrGLCaps.h133 int getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function
135 return this->getRenderTargetSampleCount(requestedCount, format.asGLFormat()); in getRenderTargetSampleCount()
137 int getRenderTargetSampleCount(int requestedCount, GrGLFormat) const;
/third_party/skia/src/gpu/vk/
DGrVkCaps.h50 int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const override;
51 int getRenderTargetSampleCount(int requestedCount, VkFormat) const;
DGrVkCaps.cpp1498 int GrVkCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function in GrVkCaps
1505 return this->getRenderTargetSampleCount(requestedCount, vkFormat); in getRenderTargetSampleCount()
1508 int GrVkCaps::getRenderTargetSampleCount(int requestedCount, VkFormat format) const { in getRenderTargetSampleCount() function in GrVkCaps
DGrVkGpu.cpp1326 sampleCnt = this->vkCaps().getRenderTargetSampleCount(sampleCnt, imageInfo.fFormat); in onWrapRenderableBackendTexture()
1383 int sampleCnt = this->vkCaps().getRenderTargetSampleCount(1, vkInfo.fFormat); in onWrapVulkanSecondaryCBAsRenderTarget()
1562 sampleCnt = fVkCaps->getRenderTargetSampleCount(sampleCnt, vkFormat); in createVkImageForBackendSurface()
/third_party/skia/src/gpu/dawn/
DGrDawnCaps.h40 int getRenderTargetSampleCount(int requestedCount,
DGrDawnCaps.cpp99 int GrDawnCaps::getRenderTargetSampleCount(int requestedCount, in getRenderTargetSampleCount() function in GrDawnCaps
DGrDawnGpu.cpp282 sampleCnt = this->caps()->getRenderTargetSampleCount(sampleCnt, tex.getBackendFormat()); in onWrapRenderableBackendTexture()
/third_party/skia/tests/
DProxyTest.cpp163 caps.getRenderTargetSampleCount(numSamples, format); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
242 int supportedNumSamples = caps.getRenderTargetSampleCount(numSamples, beFormat); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DResourceAllocatorTest.cpp242 int k2 = caps->getRenderTargetSampleCount(2, beFormat); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
243 int k4 = caps->getRenderTargetSampleCount(4, beFormat); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DProgramsTest.cpp147 int sampleCnt = random->nextBool() ? caps->getRenderTargetSampleCount(2, format) : 1; in random_surface_draw_context()
DResourceCacheTest.cpp150 context->priv().caps()->getRenderTargetSampleCount(2, format);
171 int bigSampleCount = context->priv().caps()->getRenderTargetSampleCount(5, format);
1727 size_t sampleCount = (size_t)caps->getRenderTargetSampleCount(4, tex->backendFormat()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
1750 size_t sampleCount = (size_t)caps->getRenderTargetSampleCount(4, proxy->backendFormat()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DSurfaceTest.cpp142 context->priv().caps()->getRenderTargetSampleCount(storedCnt, format); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
174 int allowedCnt = context->priv().caps()->getRenderTargetSampleCount(storedCnt, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DDeferredDisplayListTest.cpp632 int availableSamples = caps->getRenderTargetSampleCount(4, format); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
/third_party/skia/src/gpu/
DGrContextThreadSafeProxy.cpp95 sampleCnt = fCaps->getRenderTargetSampleCount(sampleCnt, backendFormat); in createCharacterization()
DGrCaps.h249 virtual int getRenderTargetSampleCount(int requestedCount, const GrBackendFormat&) const = 0;
DGrProxyProvider.cpp478 renderTargetSampleCnt = caps->getRenderTargetSampleCount(renderTargetSampleCnt, format); in createProxy()
628 sampleCnt = caps->getRenderTargetSampleCount(sampleCnt, backendTex.getBackendFormat()); in wrapRenderableBackendTexture()
DGrGpu.cpp124 this->caps()->getRenderTargetSampleCount(renderTargetSampleCnt, format); in createTextureCommon()
/third_party/skia/tools/skpbench/
Dskpbench.cpp584 int supportedSampleCount = ctx->priv().caps()->getRenderTargetSampleCount( in main()
/third_party/skia/bench/
Dnanobench.cpp468 ctx->priv().caps()->getRenderTargetSampleCount(sampleCount, format); in create_config()

12