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

Side by Side Diff: tests/GrDrawTargetTest.cpp

Issue 66333002: Fix stale assert in GrDrawTarget::print (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « src/gpu/GrDrawTarget.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 /*
3 * Copyright 2013 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9 #if SK_SUPPORT_GPU
10
11 #include "GrContext.h"
12 #include "GrContextFactory.h"
13 #include "GrGpu.h"
14 #include "GrDrawTargetCaps.h"
15 #include "Test.h"
16
17 static void test_print(skiatest::Reporter*, const GrDrawTargetCaps* caps) {
18 // This used to assert.
19 caps->print();
20 }
21
22 static void TestGrDrawTarget(skiatest::Reporter* reporter, GrContextFactory* fac tory) {
23 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
24 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::G LContextType>(type);
25
26 GrContext* grContext = factory->get(glType);
27 if (NULL == grContext) {
28 continue;
29 }
30
31 test_print(reporter, grContext->getGpu()->caps());
32 }
33 }
34
35 #include "TestClassDef.h"
36 DEFINE_GPUTESTCLASS("GrDrawTarget", TestGrDrawTargetClass, TestGrDrawTarget)
37
38 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrDrawTarget.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698