Index: tests/Test.h |
diff --git a/tests/Test.h b/tests/Test.h |
index be2ef1f788b0ee320b79d5b4559b9512e889e8cc..fb0fd1fec83d5933b7399eccb73b5b3f40430871 100644 |
--- a/tests/Test.h |
+++ b/tests/Test.h |
@@ -74,10 +74,13 @@ typedef SkTRegistry<Test> TestRegistry; |
enum GPUTestContexts { |
kNone_GPUTestContexts = 0, |
kNull_GPUTestContexts = 1, |
- kNative_GPUTestContexts = 1 << 1, |
- kOther_GPUTestContexts = 1 << 2, // Other than native, used only for below. |
+ kDebug_GPUTestContexts = 1 << 1, |
+ kNative_GPUTestContexts = 1 << 2, |
+ kOther_GPUTestContexts = 1 << 3, // Other than native, used only for below. |
kAllRendering_GPUTestContexts = kNative_GPUTestContexts | kOther_GPUTestContexts, |
- kAll_GPUTestContexts = kAllRendering_GPUTestContexts | kNull_GPUTestContexts |
+ kAll_GPUTestContexts = kAllRendering_GPUTestContexts |
+ | kNull_GPUTestContexts |
+ | kDebug_GPUTestContexts |
}; |
template<typename T> |
void RunWithGPUTestContexts(T testFunction, GPUTestContexts contexts, Reporter* reporter, |