/third_party/flutter/skia/src/core/ |
D | SkSurfaceCharacterization.cpp | 54 if (width <= 0 || height <= 0 || width > caps->maxRenderTargetSize() || in createResized() 55 height > caps->maxRenderTargetSize()) { in createResized()
|
/third_party/skia/src/gpu/ |
D | GrContextThreadSafeProxy.cpp | 80 if (ii.width() < 1 || ii.width() > fCaps->maxRenderTargetSize() || in createCharacterization() 81 ii.height() < 1 || ii.height() > fCaps->maxRenderTargetSize()) { in createCharacterization()
|
D | GrRecordingContext.cpp | 171 int GrRecordingContext::maxRenderTargetSize() const { return this->caps()->maxRenderTargetSize(); } in maxRenderTargetSize() function in GrRecordingContext
|
D | GrDynamicAtlas.cpp | 194 SkASSERT(fMaxAtlasSize <= onFlushRP->caps()->maxRenderTargetSize()); in instantiate()
|
D | GrCaps.h | 195 int maxRenderTargetSize() const { return fMaxRenderTargetSize; } in maxRenderTargetSize() function
|
D | GrGpu.cpp | 343 if (backendTex.width() > caps->maxRenderTargetSize() || in wrapRenderableBackendTexture() 344 backendTex.height() > caps->maxRenderTargetSize()) { in wrapRenderableBackendTexture()
|
D | GrProxyProvider.cpp | 807 if (dimensions.fWidth > this->caps()->maxRenderTargetSize() || in createLazyRenderTargetProxy() 808 dimensions.fHeight > this->caps()->maxRenderTargetSize()) { in createLazyRenderTargetProxy()
|
D | GrCaps.cpp | 329 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams()
|
/third_party/skia/src/core/ |
D | SkSurfaceCharacterization.cpp | 70 if (width <= 0 || height <= 0 || width > caps->maxRenderTargetSize() || in createResized() 71 height > caps->maxRenderTargetSize()) { in createResized()
|
D | SkGpuBlurUtils.cpp | 472 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/ |
D | GrCCDrawPathsOp.cpp | 264 if (this->shouldCachePathMask(onFlushRP->caps()->maxRenderTargetSize())) { in accountForOwnPath() 281 bool GrCCDrawPathsOp::SingleDraw::shouldCachePathMask(int maxRenderTargetSize) const { in shouldCachePathMask() 290 if (shapeMaxDimension > maxRenderTargetSize) { in shouldCachePathMask()
|
D | GrCCDrawPathsOp.h | 108 bool shouldCachePathMask(int maxRenderTargetSize) const;
|
D | GrCCAtlas.cpp | 225 SkASSERT(fMaxTextureSize <= onFlushRP->caps()->maxRenderTargetSize()); in makeRenderTargetContext()
|
D | GrCoverageCountingPathRenderer.cpp | 212 int maxRTSize = caps.maxRenderTargetSize(); in makeClipProcessor()
|
/third_party/flutter/skia/src/gpu/ |
D | GrContext.cpp | 233 int GrContext::maxRenderTargetSize() const { return this->caps()->maxRenderTargetSize(); } in maxRenderTargetSize() function in GrContext
|
D | GrGpu.cpp | 281 if (backendTex.width() > caps->maxRenderTargetSize() || in wrapRenderableBackendTexture() 282 backendTex.height() > caps->maxRenderTargetSize()) { in wrapRenderableBackendTexture()
|
D | GrCaps.h | 140 int maxRenderTargetSize() const { return fMaxRenderTargetSize; } in maxRenderTargetSize() function
|
D | GrCaps.cpp | 304 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams()
|
/third_party/skia/include/gpu/ |
D | GrRecordingContext.h | 81 SK_API int maxRenderTargetSize() const;
|
D | GrDirectContext.h | 309 using GrRecordingContext::maxRenderTargetSize;
|
/third_party/flutter/skia/include/gpu/ |
D | GrContext.h | 226 int maxRenderTargetSize() const;
|
/third_party/skia/tools/skiaserve/ |
D | Request.cpp | 113 int maxRTSize = this->directContext()->maxRenderTargetSize(); in getBounds()
|
/third_party/flutter/skia/tools/skiaserve/ |
D | Request.cpp | 106 int maxRTSize = this->getContext()->maxRenderTargetSize(); in getBounds()
|
/third_party/flutter/skia/tools/skpbench/ |
D | skpbench.cpp | 478 if (ctx->maxRenderTargetSize() < SkTMax(width, height)) { in main() 480 width, height, ctx->maxRenderTargetSize()); in main()
|
/third_party/skia/tools/skpbench/ |
D | skpbench.cpp | 575 if (ctx->maxRenderTargetSize() < std::max(width, height)) { in main() 577 width, height, ctx->maxRenderTargetSize()); in main()
|