| commit | f2f1c17e331fe1e0ce695969970ecebc81e12ceb | [log] [tgz] |
|---|---|---|
| author | bsalomon <bsalomon@google.com> | Tue Apr 05 12:59:06 2016 -0700 |
| committer | Commit bot <commit-bot@chromium.org> | Tue Apr 05 12:59:06 2016 -0700 |
| tree | e4dc53ee03e1803307a43917fb440d19cfe3f6f1 | |
| parent | 4319593988db5796023d9f5f34a8ed285c2097dd [diff] [blame] |
One signature for creating unit tests that run on premade GrContexts GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1860593002 Review URL: https://codereview.chromium.org/1860593002
diff --git a/tests/GrSurfaceTest.cpp b/tests/GrSurfaceTest.cpp index ac0b399..280a1c8 100644 --- a/tests/GrSurfaceTest.cpp +++ b/tests/GrSurfaceTest.cpp
@@ -18,7 +18,8 @@ // Tests that GrSurface::asTexture(), GrSurface::asRenderTarget(), and static upcasting of texture // and render targets to GrSurface all work as expected. -DEF_GPUTEST_FOR_NULL_CONTEXT(GrSurface, reporter, context) { +DEF_GPUTEST_FOR_NULL_CONTEXT(GrSurface, reporter, ctxInfo) { + GrContext* context = ctxInfo.fGrContext; GrSurfaceDesc desc; desc.fConfig = kSkia8888_GrPixelConfig; desc.fFlags = kRenderTarget_GrSurfaceFlag;