| OLD | NEW |
| 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_NVPRContextOptionHasPathRenderingSupport, 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 // Test that if NVPR is possible, caps are in sync. | 20 GrContext* context = testFactory.get(GrContextFactory::kNative_GLContextType
, |
| 21 for (int i = 0; i < GrContextFactory::kGLContextTypeCnt; ++i) { | 21 kNone_GrGLStandard, |
| 22 GrContextFactory::GLContextType glCtxType = static_cast<GrContextFactory
::GLContextType>(i); | 22 GrContextFactory::kEnableNVPR_GLContext
Options); |
| 23 GrContext* context = testFactory.get(glCtxType, | 23 if (context) { |
| 24 GrContextFactory::kEnableNVPR_GLCon
textOptions); | |
| 25 if (!context) { | |
| 26 continue; | |
| 27 } | |
| 28 REPORTER_ASSERT( | 24 REPORTER_ASSERT( |
| 29 reporter, | 25 reporter, |
| 30 context->caps()->shaderCaps()->pathRenderingSupport()); | 26 context->caps()->shaderCaps()->pathRenderingSupport()); |
| 31 } | 27 } |
| 32 } | 28 } |
| 33 | 29 |
| 34 DEF_GPUTEST(GrContextFactory_NoPathRenderingUnlessNVPRRequested, reporter, /*fac
tory*/) { | 30 DEF_GPUTEST(GrContextFactory_NoPathRenderingUnlessNVPRRequested, reporter, /*fac
tory*/) { |
| 35 // 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. |
| 36 | 32 |
| 37 GrContextFactory testFactory; | 33 GrContextFactory testFactory; |
| 38 for (int i = 0; i <= GrContextFactory::kLastGLContextType; ++i) { | 34 for (int i = 0; i <= GrContextFactory::kLastGLContextType; ++i) { |
| 39 GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContext
Type)i; | 35 GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContext
Type)i; |
| 40 GrContext* context = testFactory.get(glCtxType); | 36 GrContext* context = testFactory.get(glCtxType); |
| 41 if (context) { | 37 if (context) { |
| 42 REPORTER_ASSERT( | 38 REPORTER_ASSERT( |
| 43 reporter, | 39 reporter, |
| 44 !context->caps()->shaderCaps()->pathRenderingSupport()); | 40 !context->caps()->shaderCaps()->pathRenderingSupport()); |
| 45 } | 41 } |
| 46 } | 42 } |
| 47 } | 43 } |
| 48 | 44 |
| 49 #endif | 45 #endif |
| OLD | NEW |