aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPictureRecorder.h
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2016-07-14 13:44:14 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-14 13:44:14 -0700
commit4c7e117b696b67d45dc939e8b516f6ae18e68d1a (patch)
treee31350e23ac95c168a852838623d27ea6f5cded6 /include/core/SkPictureRecorder.h
parent64bbad360f30930befafee1bdefe4ad89f130dac (diff)
Remove dead flag from SkPictureRecorder
With the Chrome CL (https://codereview.chromium.org/2149533003/ (Remove use of unsupported Skia flag)) landed, this should be good to go. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2152943002 Review-Url: https://codereview.chromium.org/2152943002
Diffstat (limited to 'include/core/SkPictureRecorder.h')
-rw-r--r--include/core/SkPictureRecorder.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/core/SkPictureRecorder.h b/include/core/SkPictureRecorder.h
index cc30be19da..82efcf0e99 100644
--- a/include/core/SkPictureRecorder.h
+++ b/include/core/SkPictureRecorder.h
@@ -31,13 +31,9 @@ public:
~SkPictureRecorder();
enum RecordFlags {
-#ifdef SK_SUPPORT_LEGACY_COMPUTESAVELAYER_FLAG
- kComputeSaveLayerInfo_RecordFlag = 1 << 0,
-#endif
-
// If you call drawPicture() or drawDrawable() on the recording canvas, this flag forces
// that object to playback its contents immediately rather than reffing the object.
- kPlaybackDrawPicture_RecordFlag = 1 << 1,
+ kPlaybackDrawPicture_RecordFlag = 1 << 0,
};
enum FinishFlags {