Searched refs:maxRTSize (Results 1 – 5 of 5) sorted by relevance
293 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceDesc() local294 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) { in validateSurfaceDesc()
106 int maxRTSize = this->getContext()->maxRenderTargetSize(); in getBounds() local107 bounds = SkIRect::MakeWH(SkTMin(bounds.width(), maxRTSize), in getBounds()108 SkTMin(bounds.height(), maxRTSize)); in getBounds()
113 int maxRTSize = this->directContext()->maxRenderTargetSize(); in getBounds() local114 bounds = SkIRect::MakeWH(std::min(bounds.width(), maxRTSize), in getBounds()115 std::min(bounds.height(), maxRTSize)); in getBounds()
316 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams() local317 if (dimensions.width() > maxRTSize || dimensions.height() > maxRTSize) { in validateSurfaceParams()
175 int maxRTSize = caps.maxRenderTargetSize(); in makeClipProcessor() local176 CropPath(deviceSpacePath, SkIRect::MakeWH(maxRTSize, maxRTSize), &croppedPath); in makeClipProcessor()