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

Unified Diff: include/core/SkReader32.h

Issue 463493002: SkCanvas::drawPatch param SkPoint[12] (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Removed GPU headers from GM Created 6 years, 4 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 | « include/core/SkReadBuffer.h ('k') | include/core/SkWriter32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkReader32.h
diff --git a/include/core/SkReader32.h b/include/core/SkReader32.h
index 3ee63bed18656f9729fbe470e7a640d0c982d4be..3d874d170a269220653dfa9398d2a01cb67bd354 100644
--- a/include/core/SkReader32.h
+++ b/include/core/SkReader32.h
@@ -15,7 +15,6 @@
#include "SkRegion.h"
#include "SkRRect.h"
#include "SkScalar.h"
-#include "SkPatch.h"
class SkString;
@@ -106,10 +105,6 @@ public:
uint16_t readU16() { return (uint16_t)this->readInt(); }
int32_t readS32() { return this->readInt(); }
uint32_t readU32() { return this->readInt(); }
-
- bool readPatch(SkPatch* patch) {
- return this->readObjectFromMemory(patch);
- }
bool readPath(SkPath* path) {
return this->readObjectFromMemory(path);
« no previous file with comments | « include/core/SkReadBuffer.h ('k') | include/core/SkWriter32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698