Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Side by Side Diff: tests/PrimitiveProcessorTest.cpp

Issue 1988923002: Remove GrRenderTarget from GrPipelineBuilder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update to ToT Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/GLProgramsTest.cpp ('k') | tools/gpu/GrTest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 // This is a GPU-backend specific test. It relies on static intializers to work 8 // This is a GPU-backend specific test. It relies on static intializers to work
9 9
10 #include "SkTypes.h" 10 #include "SkTypes.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 97
98 int fNumAttribs; 98 int fNumAttribs;
99 99
100 typedef GrVertexBatch INHERITED; 100 typedef GrVertexBatch INHERITED;
101 }; 101 };
102 } 102 }
103 103
104 DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(VertexAttributeCount, reporter, ctxInfo) { 104 DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(VertexAttributeCount, reporter, ctxInfo) {
105 GrContext* context = ctxInfo.grContext(); 105 GrContext* context = ctxInfo.grContext();
106 106
107 sk_sp<GrDrawContext> dc(context->newDrawContext(SkBackingFit::kApprox, 107 sk_sp<GrDrawContext> drawContext(context->newDrawContext(SkBackingFit::kAppr ox,
108 1, 1, kRGBA_8888_GrPixelConf ig)); 108 1, 1, kRGBA_8888_Gr PixelConfig));
109 if (!dc) { 109 if (!drawContext) {
110 ERRORF(reporter, "Could not create draw context."); 110 ERRORF(reporter, "Could not create draw context.");
111 return; 111 return;
112 } 112 }
113 int attribCnt = context->caps()->maxVertexAttributes(); 113 int attribCnt = context->caps()->maxVertexAttributes();
114 if (!attribCnt) { 114 if (!attribCnt) {
115 ERRORF(reporter, "No attributes allowed?!"); 115 ERRORF(reporter, "No attributes allowed?!");
116 return; 116 return;
117 } 117 }
118 context->flush(); 118 context->flush();
119 context->resetGpuStats(); 119 context->resetGpuStats();
120 #if GR_GPU_STATS 120 #if GR_GPU_STATS
121 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0); 121 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0);
122 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0) ; 122 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0) ;
123 #endif 123 #endif
124 SkAutoTUnref<GrDrawBatch> batch; 124 SkAutoTUnref<GrDrawBatch> batch;
125 GrPipelineBuilder pb; 125 GrPipelineBuilder pb;
126 pb.setRenderTarget(dc->accessRenderTarget());
127 // This one should succeed. 126 // This one should succeed.
128 batch.reset(new Batch(attribCnt)); 127 batch.reset(new Batch(attribCnt));
129 dc->drawContextPriv().testingOnly_drawBatch(pb, batch); 128 drawContext->drawContextPriv().testingOnly_drawBatch(pb, batch);
130 context->flush(); 129 context->flush();
131 #if GR_GPU_STATS 130 #if GR_GPU_STATS
132 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 1); 131 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 1);
133 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0) ; 132 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0) ;
134 #endif 133 #endif
135 context->resetGpuStats(); 134 context->resetGpuStats();
136 // This one should fail. 135 // This one should fail.
137 batch.reset(new Batch(attribCnt+1)); 136 batch.reset(new Batch(attribCnt+1));
138 dc->drawContextPriv().testingOnly_drawBatch(pb, batch); 137 drawContext->drawContextPriv().testingOnly_drawBatch(pb, batch);
139 context->flush(); 138 context->flush();
140 #if GR_GPU_STATS 139 #if GR_GPU_STATS
141 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0); 140 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0);
142 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 1) ; 141 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 1) ;
143 #endif 142 #endif
144 } 143 }
145 #endif 144 #endif
OLDNEW
« no previous file with comments | « tests/GLProgramsTest.cpp ('k') | tools/gpu/GrTest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698