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

Side by Side Diff: tests/GrContextFactoryTest.cpp

Issue 1448883002: Make NVPR a GL context option instead of a GL context (Closed) Base URL: https://skia.googlesource.com/skia.git@commandbuffer-as-api-02-other-tests-refactor
Patch Set: rebase Created 5 years 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/GrContextFactory.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
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 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 #include "SkTypes.h" 8 #include "SkTypes.h"
9 9
10 #if SK_SUPPORT_GPU 10 #if SK_SUPPORT_GPU
11 11
12 #include "GrContextFactory.h" 12 #include "GrContextFactory.h"
13 #include "GrCaps.h" 13 #include "GrCaps.h"
14 #include "Test.h" 14 #include "Test.h"
15 15
16 DEF_GPUTEST(GrContextFactory_NVPRContextTypeHasPathRenderingSupport, reporter, / *factory*/) { 16 DEF_GPUTEST(GrContextFactory_NVPRContextOptionHasPathRenderingSupport, reporter, /*factory*/) {
17 // Test that if NVPR is requested, the context always has path rendering 17 // Test that if NVPR is requested, the context always has path rendering
18 // or the context creation fails. 18 // or the context creation fails.
19 GrContextFactory testFactory; 19 GrContextFactory testFactory;
20 GrContext* context = testFactory.get(GrContextFactory::kNVPR_GLContextType); 20 GrContext* context = testFactory.get(GrContextFactory::kNative_GLContextType ,
21 kNone_GrGLStandard,
22 GrContextFactory::kEnableNVPR_GLContext Options);
21 if (context) { 23 if (context) {
22 REPORTER_ASSERT( 24 REPORTER_ASSERT(
23 reporter, 25 reporter,
24 context->caps()->shaderCaps()->pathRenderingSupport()); 26 context->caps()->shaderCaps()->pathRenderingSupport());
25 } 27 }
26 } 28 }
27 29
28 DEF_GPUTEST(GrContextFactory_NoPathRenderingUnlessNVPRRequested, reporter, /*fac tory*/) { 30 DEF_GPUTEST(GrContextFactory_NoPathRenderingUnlessNVPRRequested, reporter, /*fac tory*/) {
29 // Test that if NVPR is not requested, the context never has path rendering support. 31 // Test that if NVPR is not requested, the context never has path rendering support.
30 32
31 GrContextFactory testFactory; 33 GrContextFactory testFactory;
32 for (int i = 0; i <= GrContextFactory::kLastGLContextType; ++i) { 34 for (int i = 0; i <= GrContextFactory::kLastGLContextType; ++i) {
33 GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContext Type)i; 35 GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContext Type)i;
34 if (glCtxType == GrContextFactory::kNVPR_GLContextType) {
35 continue;
36 }
37 GrContext* context = testFactory.get(glCtxType); 36 GrContext* context = testFactory.get(glCtxType);
38 if (context) { 37 if (context) {
39 REPORTER_ASSERT( 38 REPORTER_ASSERT(
40 reporter, 39 reporter,
41 !context->caps()->shaderCaps()->pathRenderingSupport()); 40 !context->caps()->shaderCaps()->pathRenderingSupport());
42 } 41 }
43 } 42 }
44 } 43 }
45 44
46 #endif 45 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrContextFactory.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698