Home
last modified time | relevance | path

Searched refs:maxRenderTargetSampleCount (Results 1 – 25 of 26) sorted by relevance

12

/external/skia/src/gpu/mock/
DGrMockCaps.h84 return sampleCount <= this->maxRenderTargetSampleCount(format.asMockColorType()); in isFormatRenderable()
111 int maxRenderTargetSampleCount(GrColorType ct) const { in maxRenderTargetSampleCount() function
123 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function
129 return this->maxRenderTargetSampleCount(format.asMockColorType()); in maxRenderTargetSampleCount()
/external/skqp/src/gpu/
DGrCaps.h171 virtual int maxRenderTargetSampleCount(GrPixelConfig) const = 0;
174 return this->maxRenderTargetSampleCount(config) > 0; in isConfigRenderable()
179 return this->maxRenderTargetSampleCount(config) > (withMSAA ? 1 : 0); in isConfigRenderable()
DGrCaps.cpp249 writer->appendS32("max sample count", this->maxRenderTargetSampleCount(config)); in dumpJSON()
DGrContext.cpp284 return fCaps->maxRenderTargetSampleCount(config); in maxSurfaceSampleCountForColorType()
/external/skia/src/gpu/d3d/
DGrD3DCaps.h46 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
47 int maxRenderTargetSampleCount(DXGI_FORMAT) const;
DGrD3DCaps.cpp819 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
861 int GrD3DCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrD3DCaps
866 return this->maxRenderTargetSampleCount(dxgiFormat); in maxRenderTargetSampleCount()
869 int GrD3DCaps::maxRenderTargetSampleCount(DXGI_FORMAT format) const { in maxRenderTargetSampleCount() function in GrD3DCaps
/external/skia/src/gpu/gl/
DGrGLCaps.h130 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
139 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override { in maxRenderTargetSampleCount() function
140 return this->maxRenderTargetSampleCount(format.asGLFormat()); in maxRenderTargetSampleCount()
142 int maxRenderTargetSampleCount(GrGLFormat) const;
/external/skia/src/gpu/mtl/
DGrMtlCaps.h42 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
43 int maxRenderTargetSampleCount(MTLPixelFormat) const;
DGrMtlCaps.mm403 return sampleCount <= this->maxRenderTargetSampleCount(format);
406 int GrMtlCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { function
407 return this->maxRenderTargetSampleCount(GrBackendFormatAsMTLPixelFormat(format));
410 int GrMtlCaps::maxRenderTargetSampleCount(MTLPixelFormat format) const { function
/external/skia/tests/
DVkWrapTests.cpp101 if (sampleCnt > gpu->caps()->maxRenderTargetSampleCount(format)) { in wrap_rt_test()
186 int maxSamples = dContext->priv().caps()->maxRenderTargetSampleCount( in wrap_trt_test()
/external/skia/src/gpu/dawn/
DGrDawnCaps.h43 int maxRenderTargetSampleCount(const GrBackendFormat& format) const override;
DGrDawnCaps.cpp108 int GrDawnCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrDawnCaps
/external/skia/src/gpu/vk/
DGrVkCaps.h53 int maxRenderTargetSampleCount(const GrBackendFormat&) const override;
54 int maxRenderTargetSampleCount(VkFormat format) const;
DGrVkCaps.cpp1456 return sampleCount <= this->maxRenderTargetSampleCount(format); in isFormatRenderable()
1493 int GrVkCaps::maxRenderTargetSampleCount(const GrBackendFormat& format) const { in maxRenderTargetSampleCount() function in GrVkCaps
1498 return this->maxRenderTargetSampleCount(vkFormat); in maxRenderTargetSampleCount()
1501 int GrVkCaps::maxRenderTargetSampleCount(VkFormat format) const { in maxRenderTargetSampleCount() function in GrVkCaps
/external/skia/src/gpu/
DGrCaps.h225 virtual int maxRenderTargetSampleCount(const GrBackendFormat&) const = 0;
230 return std::min(fInternalMultisampleCount, this->maxRenderTargetSampleCount(format)); in internalMultisampleCount()
DGrRecordingContext.cpp56 return this->caps()->maxRenderTargetSampleCount(format); in maxSurfaceSampleCountForColorType()
/external/skqp/src/gpu/mtl/
DGrMtlCaps.h34 int maxRenderTargetSampleCount(GrPixelConfig) const override; in maxRenderTargetSampleCount() function
DGrMtlCaps.mm271 int GrMtlCaps::maxRenderTargetSampleCount(GrPixelConfig config) const { function
/external/skqp/src/gpu/mock/
DGrMockCaps.h58 int maxRenderTargetSampleCount(GrPixelConfig config) const override { in maxRenderTargetSampleCount() function
/external/skqp/src/gpu/vk/
DGrVkCaps.h44 int maxRenderTargetSampleCount(GrPixelConfig config) const override;
DGrVkCaps.cpp741 int GrVkCaps::maxRenderTargetSampleCount(GrPixelConfig config) const { in maxRenderTargetSampleCount() function in GrVkCaps
DGrVkGpu.cpp623 !this->vkCaps().maxRenderTargetSampleCount(kRGB_888_GrPixelConfig)) { in uploadTexDataOptimal()
/external/skqp/src/gpu/gl/
DGrGLCaps.h118 int maxRenderTargetSampleCount(GrPixelConfig config) const override;
DGrGLCaps.cpp2899 int GrGLCaps::maxRenderTargetSampleCount(GrPixelConfig config) const { in maxRenderTargetSampleCount() function in GrGLCaps
/external/skqp/src/image/
DSkSurface_Gpu.cpp478 if (ctx->contextPriv().caps()->maxRenderTargetSampleCount(*config) <= 1) { in validate_backend_render_target()

12