Home
last modified time | relevance | path

Searched refs:maxRenderTargetSize (Results 1 – 25 of 34) sorted by relevance

12

/third_party/flutter/skia/src/core/
DSkSurfaceCharacterization.cpp54 if (width <= 0 || height <= 0 || width > caps->maxRenderTargetSize() || in createResized()
55 height > caps->maxRenderTargetSize()) { in createResized()
/third_party/skia/src/gpu/
DGrContextThreadSafeProxy.cpp80 if (ii.width() < 1 || ii.width() > fCaps->maxRenderTargetSize() || in createCharacterization()
81 ii.height() < 1 || ii.height() > fCaps->maxRenderTargetSize()) { in createCharacterization()
DGrRecordingContext.cpp171 int GrRecordingContext::maxRenderTargetSize() const { return this->caps()->maxRenderTargetSize(); } in maxRenderTargetSize() function in GrRecordingContext
DGrDynamicAtlas.cpp194 SkASSERT(fMaxAtlasSize <= onFlushRP->caps()->maxRenderTargetSize()); in instantiate()
DGrCaps.h195 int maxRenderTargetSize() const { return fMaxRenderTargetSize; } in maxRenderTargetSize() function
DGrGpu.cpp343 if (backendTex.width() > caps->maxRenderTargetSize() || in wrapRenderableBackendTexture()
344 backendTex.height() > caps->maxRenderTargetSize()) { in wrapRenderableBackendTexture()
DGrProxyProvider.cpp807 if (dimensions.fWidth > this->caps()->maxRenderTargetSize() || in createLazyRenderTargetProxy()
808 dimensions.fHeight > this->caps()->maxRenderTargetSize()) { in createLazyRenderTargetProxy()
DGrCaps.cpp329 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams()
/third_party/skia/src/core/
DSkSurfaceCharacterization.cpp70 if (width <= 0 || height <= 0 || width > caps->maxRenderTargetSize() || in createResized()
71 height > caps->maxRenderTargetSize()) { in createResized()
DSkGpuBlurUtils.cpp472 int maxRenderTargetSize = rContext->priv().caps()->maxRenderTargetSize(); in GaussianBlur() local
473 if (dstBounds.width() > maxRenderTargetSize || dstBounds.height() > maxRenderTargetSize) { in GaussianBlur()
/third_party/flutter/skia/src/gpu/ccpr/
DGrCCDrawPathsOp.cpp264 if (this->shouldCachePathMask(onFlushRP->caps()->maxRenderTargetSize())) { in accountForOwnPath()
281 bool GrCCDrawPathsOp::SingleDraw::shouldCachePathMask(int maxRenderTargetSize) const { in shouldCachePathMask()
290 if (shapeMaxDimension > maxRenderTargetSize) { in shouldCachePathMask()
DGrCCDrawPathsOp.h108 bool shouldCachePathMask(int maxRenderTargetSize) const;
DGrCCAtlas.cpp225 SkASSERT(fMaxTextureSize <= onFlushRP->caps()->maxRenderTargetSize()); in makeRenderTargetContext()
DGrCoverageCountingPathRenderer.cpp212 int maxRTSize = caps.maxRenderTargetSize(); in makeClipProcessor()
/third_party/flutter/skia/src/gpu/
DGrContext.cpp233 int GrContext::maxRenderTargetSize() const { return this->caps()->maxRenderTargetSize(); } in maxRenderTargetSize() function in GrContext
DGrGpu.cpp281 if (backendTex.width() > caps->maxRenderTargetSize() || in wrapRenderableBackendTexture()
282 backendTex.height() > caps->maxRenderTargetSize()) { in wrapRenderableBackendTexture()
DGrCaps.h140 int maxRenderTargetSize() const { return fMaxRenderTargetSize; } in maxRenderTargetSize() function
DGrCaps.cpp304 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams()
/third_party/skia/include/gpu/
DGrRecordingContext.h81 SK_API int maxRenderTargetSize() const;
DGrDirectContext.h309 using GrRecordingContext::maxRenderTargetSize;
/third_party/flutter/skia/include/gpu/
DGrContext.h226 int maxRenderTargetSize() const;
/third_party/skia/tools/skiaserve/
DRequest.cpp113 int maxRTSize = this->directContext()->maxRenderTargetSize(); in getBounds()
/third_party/flutter/skia/tools/skiaserve/
DRequest.cpp106 int maxRTSize = this->getContext()->maxRenderTargetSize(); in getBounds()
/third_party/flutter/skia/tools/skpbench/
Dskpbench.cpp478 if (ctx->maxRenderTargetSize() < SkTMax(width, height)) { in main()
480 width, height, ctx->maxRenderTargetSize()); in main()
/third_party/skia/tools/skpbench/
Dskpbench.cpp575 if (ctx->maxRenderTargetSize() < std::max(width, height)) { in main()
577 width, height, ctx->maxRenderTargetSize()); in main()

12