aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/gm.h
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-07 18:55:09 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-07 18:55:09 +0000
commit3a882dda0787e6957cfb37f6b5a68bcd31ce5cf7 (patch)
tree8942ac5059099d69f98e5cf2cf972b108a317774 /gm/gm.h
parent680963ec83b910f926e2bfae3d212f123bd4fb6c (diff)
GM: Allow ignored-tests.txt to list configs as well as tests (and combinations too)
BUG=skia:1657 This will allow us to ignore poppler failures until bug 1657 is resolved (but this CL doesn't actually make that change to ignored-tests.txt yet) R=scroggo@google.com Review URL: https://codereview.chromium.org/26294004 git-svn-id: http://skia.googlecode.com/svn/trunk@11639 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/gm.h')
-rw-r--r--gm/gm.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/gm/gm.h b/gm/gm.h
index bf1a41140d..a0ad3cfadd 100644
--- a/gm/gm.h
+++ b/gm/gm.h
@@ -94,11 +94,6 @@ namespace skiagm {
return gResourcePath;
}
- bool isIgnoringFailures() const { return fIgnoreFailures; }
- void setIgnoreFailures(bool val) {
- fIgnoreFailures = val;
- }
-
bool isCanvasDeferred() const { return fCanvasIsDeferred; }
void setCanvasIsDeferred(bool isDeferred) {
fCanvasIsDeferred = isDeferred;
@@ -129,7 +124,6 @@ namespace skiagm {
SkColor fBGColor;
bool fCanvasIsDeferred; // work-around problem in srcmode.cpp
bool fHaveCalledOnceBeforeDraw;
- bool fIgnoreFailures; // whether to file any failures as failure-ignored
SkMatrix fStarterMatrix;
};