Searched refs:maxRTSize (Results 1 – 6 of 6) sorted by relevance
/external/skqp/src/gpu/ |
D | GrCaps.cpp | 293 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceDesc() local 294 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) { in validateSurfaceDesc()
|
/external/skia/tools/skiaserve/ |
D | Request.cpp | 108 int maxRTSize = this->getContext()->maxRenderTargetSize(); in getBounds() local 109 bounds = SkIRect::MakeWH(std::min(bounds.width(), maxRTSize), in getBounds() 110 std::min(bounds.height(), maxRTSize)); in getBounds()
|
/external/skqp/tools/skiaserve/ |
D | Request.cpp | 106 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/src/gpu/ |
D | GrCaps.cpp | 305 int maxRTSize = this->maxRenderTargetSize(); in validateSurfaceParams() local 306 if (dimensions.width() > maxRTSize || dimensions.height() > maxRTSize) { in validateSurfaceParams()
|
/external/skqp/src/gpu/ccpr/ |
D | GrCoverageCountingPathRenderer.cpp | 175 int maxRTSize = caps.maxRenderTargetSize(); in makeClipProcessor() local 176 CropPath(deviceSpacePath, SkIRect::MakeWH(maxRTSize, maxRTSize), &croppedPath); in makeClipProcessor()
|
/external/skia/src/gpu/ccpr/ |
D | GrCoverageCountingPathRenderer.cpp | 212 int maxRTSize = caps.maxRenderTargetSize(); in makeClipProcessor() local 213 CropPath(deviceSpacePath, SkIRect::MakeWH(maxRTSize, maxRTSize), &croppedPath); in makeClipProcessor()
|