| Index: tests/VkUploadPixelsTests.cpp
|
| diff --git a/tests/VkUploadPixelsTests.cpp b/tests/VkUploadPixelsTests.cpp
|
| index e5f72dd635d3c1a1d95a8d82134477040c1f0e02..a509978eda9024c81ec0ca6ebe3c0ec0198c9b9e 100644
|
| --- a/tests/VkUploadPixelsTests.cpp
|
| +++ b/tests/VkUploadPixelsTests.cpp
|
| @@ -137,12 +137,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_texture_test(reporter, context, kRGBA_8888_GrPixelConfig, false, false);
|
| basic_texture_test(reporter, context, kRGBA_8888_GrPixelConfig, true, false);
|
|
|