aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkXfermode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkXfermode.cpp')
-rw-r--r--src/core/SkXfermode.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/SkXfermode.cpp b/src/core/SkXfermode.cpp
index fb1726808f..53c431b7a0 100644
--- a/src/core/SkXfermode.cpp
+++ b/src/core/SkXfermode.cpp
@@ -1391,9 +1391,9 @@ void SkProcCoeffXfermode::xfer32(SkPMColor* SK_RESTRICT dst,
const SkPMColor* SK_RESTRICT src, int count,
const SkAlpha* SK_RESTRICT aa) const {
SkASSERT(dst && src && count >= 0);
-
+
SkXfermodeProc proc = fProc;
-
+
if (NULL != proc) {
if (NULL == aa) {
for (int i = count - 1; i >= 0; --i) {
@@ -1419,9 +1419,9 @@ void SkProcCoeffXfermode::xfer16(uint16_t* SK_RESTRICT dst,
const SkPMColor* SK_RESTRICT src, int count,
const SkAlpha* SK_RESTRICT aa) const {
SkASSERT(dst && src && count >= 0);
-
+
SkXfermodeProc proc = fProc;
-
+
if (NULL != proc) {
if (NULL == aa) {
for (int i = count - 1; i >= 0; --i) {
@@ -1448,9 +1448,9 @@ void SkProcCoeffXfermode::xferA8(SkAlpha* SK_RESTRICT dst,
const SkPMColor* SK_RESTRICT src, int count,
const SkAlpha* SK_RESTRICT aa) const {
SkASSERT(dst && src && count >= 0);
-
+
SkXfermodeProc proc = fProc;
-
+
if (NULL != proc) {
if (NULL == aa) {
for (int i = count - 1; i >= 0; --i) {