| OLD | NEW |
| 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 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 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->caps()); |
| 33 } | 33 } |
| 34 } | 34 } |
| 35 | 35 |
| 36 #endif | 36 #endif |
| OLD | NEW |