Home
last modified time | relevance | path

Searched refs:maxRTSize (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/tools/skiaserve/
DRequest.cpp113 int maxRTSize = this->directContext()->maxRenderTargetSize(); in getBounds() local
114 bounds = SkIRect::MakeWH(std::min(bounds.width(), maxRTSize), in getBounds()
115 std::min(bounds.height(), maxRTSize)); in getBounds()
/third_party/flutter/skia/tools/skiaserve/
DRequest.cpp106 int maxRTSize = this->getContext()->maxRenderTargetSize(); in getBounds() local
107 bounds = SkIRect::MakeWH(SkTMin(bounds.width(), maxRTSize), in getBounds()
108 SkTMin(bounds.height(), maxRTSize)); in getBounds()
/third_party/flutter/skia/src/gpu/
DGrCaps.cpp304 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams() local
305 if (size.width() > maxRTSize || size.height() > maxRTSize) { in validateSurfaceParams()
/third_party/flutter/skia/src/gpu/ccpr/
DGrCoverageCountingPathRenderer.cpp212 int maxRTSize = caps.maxRenderTargetSize(); in makeClipProcessor() local
213 CropPath(deviceSpacePath, SkIRect::MakeWH(maxRTSize, maxRTSize), &croppedPath); in makeClipProcessor()
/third_party/skia/src/gpu/
DGrCaps.cpp329 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams() local
330 if (dimensions.width() > maxRTSize || dimensions.height() > maxRTSize) { in validateSurfaceParams()