aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkMask.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/SkMask.h')
-rw-r--r--include/core/SkMask.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkMask.h b/include/core/SkMask.h
index 4cf3ae7307..71551842bb 100644
--- a/include/core/SkMask.h
+++ b/include/core/SkMask.h
@@ -98,7 +98,7 @@ struct SkMask {
uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
return row + (x - fBounds.fLeft);
}
-
+
/**
* Return the address of the specified 32bit mask. In the debug build,
* this asserts that the mask's format is 32bits, and that (x,y)
@@ -111,7 +111,7 @@ struct SkMask {
uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
return row + (x - fBounds.fLeft);
}
-
+
/**
* Returns the address of the specified pixel, computing the pixel-size
* at runtime based on the mask format. This will be slightly slower than