Home
last modified time | relevance | path

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

/external/skqp/src/gpu/
DGrCaps.cpp293 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceDesc() local
294 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) { in validateSurfaceDesc()
/external/skqp/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()
/external/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()
/external/skia/src/gpu/
DGrCaps.cpp316 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams() local
317 if (dimensions.width() > maxRTSize || dimensions.height() > maxRTSize) { in validateSurfaceParams()
/external/skqp/src/gpu/ccpr/
DGrCoverageCountingPathRenderer.cpp175 int maxRTSize = caps.maxRenderTargetSize(); in makeClipProcessor() local
176 CropPath(deviceSpacePath, SkIRect::MakeWH(maxRTSize, maxRTSize), &croppedPath); in makeClipProcessor()