commit | bd500f09ce5b1ca464431d693f9ec5da60a59230 | [log] [tgz] |
---|---|---|
author | bsalomon <bsalomon@google.com> | Thu Feb 25 06:52:12 2016 -0800 |
committer | Commit bot <commit-bot@chromium.org> | Thu Feb 25 06:52:12 2016 -0800 |
tree | 16d46d581f91f0ebbb9fbf2316be2be7fac32ad8 | |
parent | 2d07b76405a672dced858aaa9ed475755ea13305 [diff] [blame] |
Revert of Move Budgeted enum out of SkSurface, use in GrTextureProvider (patchset #6 id:100001 of https://codereview.chromium.org/1728093005/ ) Reason for revert: Need workaround for chrome to build Original issue's description: > Move Budgeted enum out of SkSurface, use in GrTextureProvider > > BUG=skia: > GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1728093005 > DOCS_PREVIEW= https://skia.org/?cl=1728093005 > > Committed: https://skia.googlesource.com/skia/+/57599fe6c0336feaeeeb9b1996e77b70219b483c TBR=reed@google.com # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1734043002
diff --git a/tests/WritePixelsTest.cpp b/tests/WritePixelsTest.cpp index 0141bf3..6d672f7 100644 --- a/tests/WritePixelsTest.cpp +++ b/tests/WritePixelsTest.cpp
@@ -413,8 +413,7 @@ desc.fHeight = DEV_H; desc.fConfig = kSkia8888_GrPixelConfig; desc.fOrigin = origin; - SkAutoTUnref<GrTexture> texture(context->textureProvider()->createTexture(desc, - SkBudgeted::kNo)); + SkAutoTUnref<GrTexture> texture(context->textureProvider()->createTexture(desc, false)); SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTargetDirect(texture->asRenderTarget())); test_write_pixels(reporter, surface); }