| Index: tests/VkClearTests.cpp
|
| diff --git a/tests/VkClearTests.cpp b/tests/VkClearTests.cpp
|
| index 5b8a30bc1be62ce4dc506ada9c89d1be86b1fe06..ab13ffd1c921fc0ad6cad9130222a74bec164a49 100644
|
| --- a/tests/VkClearTests.cpp
|
| +++ b/tests/VkClearTests.cpp
|
| @@ -200,12 +200,12 @@
|
| GrContextOptions opts;
|
| opts.fSuppressPrints = true;
|
| GrContextFactory debugFactory(opts);
|
| - for (int type = 0; type < GrContextFactory::kContextTypeCnt; ++type) {
|
| - if (static_cast<GrContextFactory::ContextType>(type) !=
|
| - GrContextFactory::kNativeGL_ContextType) {
|
| + for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
|
| + if (static_cast<GrContextFactory::GLContextType>(type) !=
|
| + GrContextFactory::kNative_GLContextType) {
|
| continue;
|
| }
|
| - GrContext* context = debugFactory.get(static_cast<GrContextFactory::ContextType>(type));
|
| + GrContext* context = debugFactory.get(static_cast<GrContextFactory::GLContextType>(type));
|
| if (context) {
|
| basic_clear_test(reporter, context, kRGBA_8888_GrPixelConfig);
|
| basic_clear_test(reporter, context, kBGRA_8888_GrPixelConfig);
|
|
|