Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Unified Diff: tests/Test.h

Issue 1514023002: Run debug gl context for DEF_GPU_TEST_FOR_ALL_CONTEXTS (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dm/DM.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « dm/DM.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698