diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/SkPixmap.cpp | 1 | ||||
-rw-r--r-- | src/core/SkUnPreMultiplyPriv.h | 1 | ||||
-rw-r--r-- | src/effects/SkBlurMask.cpp | 1 | ||||
-rw-r--r-- | src/effects/SkEmbossMaskFilter.cpp | 1 | ||||
-rw-r--r-- | src/gpu/GrBlend.cpp | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/src/core/SkPixmap.cpp b/src/core/SkPixmap.cpp index 7873a9b8ce..42e2c66029 100644 --- a/src/core/SkPixmap.cpp +++ b/src/core/SkPixmap.cpp @@ -19,6 +19,7 @@ #include "SkReadPixelsRec.h" #include "SkSurface.h" #include "SkTemplates.h" +#include "SkUnPreMultiply.h" #include "SkUtils.h" ///////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/src/core/SkUnPreMultiplyPriv.h b/src/core/SkUnPreMultiplyPriv.h index 073e239ed7..f25e78f96a 100644 --- a/src/core/SkUnPreMultiplyPriv.h +++ b/src/core/SkUnPreMultiplyPriv.h @@ -9,6 +9,7 @@ #define SkUnPreMultiplyPriv_DEFINED #include "SkColor.h" +#include "SkUnPreMultiply.h" template <bool kSwapRB> void SkUnpremultiplyRow(uint32_t* dst, const uint32_t* src, int count) { diff --git a/src/effects/SkBlurMask.cpp b/src/effects/SkBlurMask.cpp index f06e2b9f1e..59d70205c9 100644 --- a/src/effects/SkBlurMask.cpp +++ b/src/effects/SkBlurMask.cpp @@ -7,6 +7,7 @@ #include "SkBlurMask.h" +#include "SkColorPriv.h" #include "SkMaskBlurFilter.h" #include "SkMath.h" #include "SkTemplates.h" diff --git a/src/effects/SkEmbossMaskFilter.cpp b/src/effects/SkEmbossMaskFilter.cpp index 4caef9ef0b..9fa26c5731 100644 --- a/src/effects/SkEmbossMaskFilter.cpp +++ b/src/effects/SkEmbossMaskFilter.cpp @@ -8,6 +8,7 @@ #include "SkEmbossMaskFilter.h" #include "SkBlurMaskFilter.h" #include "SkBlurMask.h" +#include "SkColorPriv.h" #include "SkEmbossMask.h" #include "SkReadBuffer.h" #include "SkWriteBuffer.h" diff --git a/src/gpu/GrBlend.cpp b/src/gpu/GrBlend.cpp index 1bb4dd3c9c..436829ce63 100644 --- a/src/gpu/GrBlend.cpp +++ b/src/gpu/GrBlend.cpp @@ -6,6 +6,7 @@ */ #include "GrBlend.h" +#include "../private/GrColor.h" /** * MaskedColor is used to evaluate the color and valid color component flags through the |