From d4c741e3d0e0fa633399691c47f76b6c7841ee83 Mon Sep 17 00:00:00 2001 From: robertphillips Date: Thu, 28 Apr 2016 09:55:15 -0700 Subject: Refactor drawContext/RenderTarget creation GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1914883002 Committed: https://skia.googlesource.com/skia/+/2f1c42e8448bbbadeb3df1c626faa90aa33f8907 Review-Url: https://codereview.chromium.org/1914883002 --- tests/ClipBoundsTest.cpp | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) (limited to 'tests/ClipBoundsTest.cpp') diff --git a/tests/ClipBoundsTest.cpp b/tests/ClipBoundsTest.cpp index abdd3f44fa..5660afdc27 100644 --- a/tests/ClipBoundsTest.cpp +++ b/tests/ClipBoundsTest.cpp @@ -17,20 +17,8 @@ DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrClipBounds, reporter, ctxInfo) { static const int kXSize = 100; static const int kYSize = 100; - GrSurfaceDesc desc; - desc.fFlags = kRenderTarget_GrSurfaceFlag; - desc.fConfig = kAlpha_8_GrPixelConfig; - desc.fWidth = kXSize; - desc.fHeight = kYSize; - - SkAutoTUnref texture( - ctxInfo.fGrContext->textureProvider()->createTexture(desc, SkBudgeted::kYes, nullptr, 0)); - if (!texture) { - return; - } - - SkIRect intScreen = SkIRect::MakeWH(kXSize, kYSize); - SkRect screen = SkRect::Make(intScreen); + const SkIRect intScreen = SkIRect::MakeWH(kXSize, kYSize); + const SkRect screen = SkRect::Make(intScreen); SkRect clipRect(screen); clipRect.outset(10, 10); @@ -56,7 +44,7 @@ DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrClipBounds, reporter, ctxInfo) { clipData.setClipStack(&stack); SkIRect devGrClipBound; - clipData.getConservativeBounds(texture->width(), texture->height(), + clipData.getConservativeBounds(kXSize, kYSize, &devGrClipBound, &isIntersectionOfRects); -- cgit v1.2.3