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

Side by Side Diff: tests/GrContextFactoryTest.cpp

Issue 2337163002: Add ContextOptions field to SkCommandLineConfigGpu (Closed)
Patch Set: Add ContextOptions field to SkCommandLineConfigGpu Created 4 years, 3 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 | « dm/DM.cpp ('k') | tools/flags/SkCommonFlagsConfig.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 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 using namespace sk_gpu_test; 16 using namespace sk_gpu_test;
17 17
18 DEF_GPUTEST(GrContextFactory_NVPRContextOptionHasPathRenderingSupport, reporter, /*factory*/) { 18 DEF_GPUTEST(GrContextFactory_NVPRContextOptionHasPathRenderingSupport, reporter, /*factory*/) {
19 // Test that if NVPR is requested, the context always has path rendering 19 // Test that if NVPR is requested, the context always has path rendering
20 // or the context creation fails. 20 // or the context creation fails.
21 GrContextFactory testFactory; 21 GrContextFactory testFactory;
22 // Test that if NVPR is possible, caps are in sync. 22 // Test that if NVPR is possible, caps are in sync.
23 for (int i = 0; i < GrContextFactory::kContextTypeCnt; ++i) { 23 for (int i = 0; i < GrContextFactory::kContextTypeCnt; ++i) {
24 GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::Co ntextType>(i); 24 GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::Co ntextType>(i);
25 GrContext* context = testFactory.get(ctxType, 25 GrContext* context = testFactory.get(ctxType,
26 GrContextFactory::kEnableNVPR_Conte xtOptions); 26 GrContextFactory::ContextOptions::k EnableNVPR);
27 if (!context) { 27 if (!context) {
28 continue; 28 continue;
29 } 29 }
30 REPORTER_ASSERT( 30 REPORTER_ASSERT(
31 reporter, 31 reporter,
32 context->caps()->shaderCaps()->pathRenderingSupport()); 32 context->caps()->shaderCaps()->pathRenderingSupport());
33 } 33 }
34 } 34 }
35 35
36 DEF_GPUTEST(GrContextFactory_NoPathRenderingUnlessNVPRRequested, reporter, /*fac tory*/) { 36 DEF_GPUTEST(GrContextFactory_NoPathRenderingUnlessNVPRRequested, reporter, /*fac tory*/) {
(...skipping 13 matching lines...) Expand all
50 50
51 DEF_GPUTEST(GrContextFactory_RequiredSRGBSupport, reporter, /*factory*/) { 51 DEF_GPUTEST(GrContextFactory_RequiredSRGBSupport, reporter, /*factory*/) {
52 // Test that if sRGB support is requested, the context always has that capab ility 52 // Test that if sRGB support is requested, the context always has that capab ility
53 // or the context creation fails. Also test that if the creation fails, a co ntext 53 // or the context creation fails. Also test that if the creation fails, a co ntext
54 // created without that flag would not have had sRGB support. 54 // created without that flag would not have had sRGB support.
55 GrContextFactory testFactory; 55 GrContextFactory testFactory;
56 // Test that if sRGB is requested, caps are in sync. 56 // Test that if sRGB is requested, caps are in sync.
57 for (int i = 0; i < GrContextFactory::kContextTypeCnt; ++i) { 57 for (int i = 0; i < GrContextFactory::kContextTypeCnt; ++i) {
58 GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::Co ntextType>(i); 58 GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::Co ntextType>(i);
59 GrContext* context = 59 GrContext* context =
60 testFactory.get(ctxType, GrContextFactory::kRequireSRGBSupport_Conte xtOptions); 60 testFactory.get(ctxType, GrContextFactory::ContextOptions::kRequireS RGBSupport);
61 61
62 if (context) { 62 if (context) {
63 REPORTER_ASSERT(reporter, context->caps()->srgbSupport()); 63 REPORTER_ASSERT(reporter, context->caps()->srgbSupport());
64 } else { 64 } else {
65 context = testFactory.get(ctxType); 65 context = testFactory.get(ctxType);
66 if (context) { 66 if (context) {
67 REPORTER_ASSERT(reporter, !context->caps()->srgbSupport()); 67 REPORTER_ASSERT(reporter, !context->caps()->srgbSupport());
68 } 68 }
69 } 69 }
70 } 70 }
(...skipping 18 matching lines...) Expand all
89 REPORTER_ASSERT(reporter, info2.testContext()); 89 REPORTER_ASSERT(reporter, info2.testContext());
90 90
91 REPORTER_ASSERT(reporter, info1.grContext() != info2.grContext()); 91 REPORTER_ASSERT(reporter, info1.grContext() != info2.grContext());
92 // The GL context should also change, but it also could get the same add ress. 92 // The GL context should also change, but it also could get the same add ress.
93 93
94 info1.grContext()->unref(); 94 info1.grContext()->unref();
95 } 95 }
96 } 96 }
97 97
98 #endif 98 #endif
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | tools/flags/SkCommonFlagsConfig.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698