aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPictureRecord.cpp
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-13 07:01:04 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-13 07:01:04 +0000
commit91274b99722d9be62e077ab979c630c23cdd04b1 (patch)
treee53b67d2dd8d809520cbf9cd7ef63b35362c87f3 /src/core/SkPictureRecord.cpp
parentc19c19111c79f6a0cadcc1ec00527c0f940edd60 (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@8120 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core/SkPictureRecord.cpp')
-rw-r--r--src/core/SkPictureRecord.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/SkPictureRecord.cpp b/src/core/SkPictureRecord.cpp
index 421c2bd960..45412fe881 100644
--- a/src/core/SkPictureRecord.cpp
+++ b/src/core/SkPictureRecord.cpp
@@ -227,7 +227,7 @@ static bool is_simple(const SkPaint& p) {
}
// CommandInfos are fed to the 'match' method and filled in with command
-// information.
+// information.
struct CommandInfo {
DrawType fActualOp;
uint32_t fOffset;
@@ -236,7 +236,7 @@ struct CommandInfo {
/*
* Attempt to match the provided pattern of commands starting at 'offset'
- * in the byte stream and stopping at the end of the stream. Upon success,
+ * in the byte stream and stopping at the end of the stream. Upon success,
* return true with all the pattern information filled out in the result
* array (i.e., actual ops, offsets and sizes).
* Note this method skips any NOOPs seen in the stream
@@ -295,7 +295,7 @@ static bool merge_savelayer_paint_into_drawbitmp(SkWriter32* writer,
const CommandInfo& dbmInfo);
/*
- * Restore has just been called (but not recorded), look back at the
+ * Restore has just been called (but not recorded), look back at the
* matching save* and see if we are in the configuration:
* SAVE_LAYER
* DRAW_BITMAP|DRAW_BITMAP_MATRIX|DRAW_BITMAP_NINE|DRAW_BITMAP_RECT_TO_RECT
@@ -345,9 +345,9 @@ static bool merge_savelayer_paint_into_drawbitmp(SkWriter32* writer,
const CommandInfo& saveLayerInfo,
const CommandInfo& dbmInfo) {
SkASSERT(SAVE_LAYER == saveLayerInfo.fActualOp);
- SkASSERT(DRAW_BITMAP == dbmInfo.fActualOp ||
+ SkASSERT(DRAW_BITMAP == dbmInfo.fActualOp ||
DRAW_BITMAP_MATRIX == dbmInfo.fActualOp ||
- DRAW_BITMAP_NINE == dbmInfo.fActualOp ||
+ DRAW_BITMAP_NINE == dbmInfo.fActualOp ||
DRAW_BITMAP_RECT_TO_RECT == dbmInfo.fActualOp);
uint32_t dbmPaintOffset = getPaintOffset(dbmInfo.fActualOp, dbmInfo.fSize);
@@ -410,7 +410,7 @@ static bool merge_savelayer_paint_into_drawbitmp(SkWriter32* writer,
}
/*
- * Restore has just been called (but not recorded), look back at the
+ * Restore has just been called (but not recorded), look back at the
* matching save* and see if we are in the configuration:
* SAVE_LAYER
* SAVE