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

Unified Diff: src/core/SkBlitter.h

Issue 413403005: Pass clip blitter rows preserved request (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkBlitter.h
diff --git a/src/core/SkBlitter.h b/src/core/SkBlitter.h
index 992eb86fa043db3d74da1b24cc93890c97f10698..f5d8d19c0c1e323fe9363138b75961ade53ac3a6 100644
--- a/src/core/SkBlitter.h
+++ b/src/core/SkBlitter.h
@@ -151,6 +151,7 @@ public:
virtual void blitMask(const SkMask&, const SkIRect& clip) SK_OVERRIDE;
virtual const SkBitmap* justAnOpaqueColor(uint32_t* value) SK_OVERRIDE;
robertphillips 2014/07/29 12:37:53 override ?
krajcevski 2014/07/29 14:09:03 Done.
+ virtual int requestRowsPreserved() const { return fBlitter->requestRowsPreserved(); }
virtual void* allocBlitMemory(size_t sz) SK_OVERRIDE {
return fBlitter->allocBlitMemory(sz);
}
@@ -182,6 +183,7 @@ public:
virtual void blitMask(const SkMask&, const SkIRect& clip) SK_OVERRIDE;
virtual const SkBitmap* justAnOpaqueColor(uint32_t* value) SK_OVERRIDE;
robertphillips 2014/07/29 12:37:53 override ?
krajcevski 2014/07/29 14:09:03 Done.
+ virtual int requestRowsPreserved() const { return fBlitter->requestRowsPreserved(); }
virtual void* allocBlitMemory(size_t sz) SK_OVERRIDE {
return fBlitter->allocBlitMemory(sz);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698