aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
authorGravatar kkinnunen <kkinnunen@nvidia.com>2015-12-10 23:19:29 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-12-10 23:19:29 -0800
commit55eeae97227fa2523207bc67523da5b9eb663536 (patch)
treec14fff6248bf858946fbdf5f0eeddccfcd1f2ade /dm
parent62d3b101106602d87cad91b0ac97c10003ca33a5 (diff)
Run debug gl context for DEF_GPU_TEST_FOR_ALL_CONTEXTS
Run debug gl context for tests defined with DEF_GPU_TEST_FOR_ALL_CONTEXTS. Review URL: https://codereview.chromium.org/1514023002
Diffstat (limited to 'dm')
-rw-r--r--dm/DM.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/dm/DM.cpp b/dm/DM.cpp
index d5001039d7..c7e0934008 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -1185,12 +1185,12 @@ void RunWithGPUTestContexts(T test, GPUTestContexts testContexts, Reporter* repo
int contextSelector = kNone_GPUTestContexts;
if (GrContextFactory::IsRenderingGLContext(glCtxType)) {
contextSelector |= kAllRendering_GPUTestContexts;
- }
- if (glCtxType == GrContextFactory::kNative_GLContextType) {
+ } else if (glCtxType == GrContextFactory::kNative_GLContextType) {
contextSelector |= kNative_GPUTestContexts;
- }
- if (glCtxType == GrContextFactory::kNull_GLContextType) {
+ } else if (glCtxType == GrContextFactory::kNull_GLContextType) {
contextSelector |= kNull_GPUTestContexts;
+ } else if (glCtxType == GrContextFactory::kDebug_GLContextType) {
+ contextSelector |= kDebug_GPUTestContexts;
}
if ((testContexts & contextSelector) == 0) {
continue;