aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/VkClearTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/VkClearTests.cpp')
-rw-r--r--tests/VkClearTests.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/VkClearTests.cpp b/tests/VkClearTests.cpp
index ab13ffd1c9..5b8a30bc1b 100644
--- a/tests/VkClearTests.cpp
+++ b/tests/VkClearTests.cpp
@@ -200,12 +200,12 @@ DEF_GPUTEST(VkClearTests, reporter, factory) {
GrContextOptions opts;
opts.fSuppressPrints = true;
GrContextFactory debugFactory(opts);
- for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
- if (static_cast<GrContextFactory::GLContextType>(type) !=
- GrContextFactory::kNative_GLContextType) {
+ for (int type = 0; type < GrContextFactory::kContextTypeCnt; ++type) {
+ if (static_cast<GrContextFactory::ContextType>(type) !=
+ GrContextFactory::kNativeGL_ContextType) {
continue;
}
- GrContext* context = debugFactory.get(static_cast<GrContextFactory::GLContextType>(type));
+ GrContext* context = debugFactory.get(static_cast<GrContextFactory::ContextType>(type));
if (context) {
basic_clear_test(reporter, context, kRGBA_8888_GrPixelConfig);
basic_clear_test(reporter, context, kBGRA_8888_GrPixelConfig);