aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PrimitiveProcessorTest.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2016-04-28 09:55:15 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-28 09:55:15 -0700
commitd4c741e3d0e0fa633399691c47f76b6c7841ee83 (patch)
tree3a242889fa24e3e209df4e0ec76049fbdde61721 /tests/PrimitiveProcessorTest.cpp
parent23bd7e9273438863149ed58c089e9bf457e9892d (diff)
Refactor drawContext/RenderTarget creation
Diffstat (limited to 'tests/PrimitiveProcessorTest.cpp')
-rw-r--r--tests/PrimitiveProcessorTest.cpp17
1 files changed, 4 insertions, 13 deletions
diff --git a/tests/PrimitiveProcessorTest.cpp b/tests/PrimitiveProcessorTest.cpp
index 6d4ede1ce9..b1157a33a9 100644
--- a/tests/PrimitiveProcessorTest.cpp
+++ b/tests/PrimitiveProcessorTest.cpp
@@ -103,18 +103,9 @@ private:
DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(VertexAttributeCount, reporter, ctxInfo) {
GrContext* context = ctxInfo.fGrContext;
- GrTextureDesc desc;
- desc.fHeight = 1;
- desc.fWidth = 1;
- desc.fFlags = kRenderTarget_GrSurfaceFlag;
- desc.fConfig = kRGBA_8888_GrPixelConfig;
- SkAutoTUnref<GrTexture> target(context->textureProvider()->createTexture(desc,
- SkBudgeted::kYes));
- if (!target) {
- ERRORF(reporter, "Could not create render target.");
- return;
- }
- sk_sp<GrDrawContext> dc(context->drawContext(sk_ref_sp(target->asRenderTarget())));
+
+ sk_sp<GrDrawContext> dc(context->newDrawContext(GrContext::kLoose_BackingFit,
+ 1, 1, kRGBA_8888_GrPixelConfig));
if (!dc) {
ERRORF(reporter, "Could not create draw context.");
return;
@@ -132,7 +123,7 @@ DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(VertexAttributeCount, reporter, ctxInfo) {
#endif
SkAutoTUnref<GrDrawBatch> batch;
GrPipelineBuilder pb;
- pb.setRenderTarget(target->asRenderTarget());
+ pb.setRenderTarget(dc->accessRenderTarget());
// This one should succeed.
batch.reset(new Batch(attribCnt));
dc->drawContextPriv().testingOnly_drawBatch(pb, batch);