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

Side by Side Diff: tests/GrDrawTargetTest.cpp

Issue 1135113005: rename GrDrawTargetCaps.h to GrCaps.h and move to include (Closed) Base URL: https://skia.googlesource.com/skia.git@caps
Patch Set: rebase again Created 5 years, 7 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 | « src/gpu/gl/GrGLCaps.h ('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
1 1
2 /* 2 /*
3 * Copyright 2013 Google Inc. 3 * Copyright 2013 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "Test.h" 9 #include "Test.h"
10 #if SK_SUPPORT_GPU 10 #if SK_SUPPORT_GPU
11 11
12 #include "GrCaps.h"
12 #include "GrContext.h" 13 #include "GrContext.h"
13 #include "GrContextFactory.h" 14 #include "GrContextFactory.h"
14 #include "GrDrawTargetCaps.h"
15 #include "GrGpu.h" 15 #include "GrGpu.h"
16 16
17 static void test_print(skiatest::Reporter*, const GrCaps* caps) { 17 static void test_print(skiatest::Reporter*, const GrCaps* caps) {
18 // This used to assert. 18 // This used to assert.
19 SkString result = caps->dump(); 19 SkString result = caps->dump();
20 SkASSERT(!result.isEmpty()); 20 SkASSERT(!result.isEmpty());
21 } 21 }
22 22
23 DEF_GPUTEST(GrDrawTarget, reporter, factory) { 23 DEF_GPUTEST(GrDrawTarget, reporter, factory) {
24 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) { 24 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
25 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::G LContextType>(type); 25 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::G LContextType>(type);
26 26
27 GrContext* grContext = factory->get(glType); 27 GrContext* grContext = factory->get(glType);
28 if (NULL == grContext) { 28 if (NULL == grContext) {
29 continue; 29 continue;
30 } 30 }
31 31
32 test_print(reporter, grContext->getGpu()->caps()); 32 test_print(reporter, grContext->getGpu()->caps());
33 } 33 }
34 } 34 }
35 35
36 #endif 36 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLCaps.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698