Index: src/opts/Sk4px_SSE2.h |
diff --git a/src/opts/Sk4px_SSE2.h b/src/opts/Sk4px_SSE2.h |
index 9ba510347ec89808f972cd3a97e78406bea478ff..ee58c38ab06ea1f0d312c7f489c4478580f854f4 100644 |
--- a/src/opts/Sk4px_SSE2.h |
+++ b/src/opts/Sk4px_SSE2.h |
@@ -5,6 +5,8 @@ |
* found in the LICENSE file. |
*/ |
+namespace { // See Sk4px.h |
+ |
inline Sk4px::Sk4px(SkPMColor px) : INHERITED(_mm_set1_epi32(px)) {} |
inline Sk4px Sk4px::Load4(const SkPMColor px[4]) { |
@@ -85,3 +87,5 @@ inline Sk4px Sk4px::zeroAlphas() const { |
// andnot(a,b) == ~a & b |
return Sk16b(_mm_andnot_si128(_mm_set1_epi32(0xFF << SK_A32_SHIFT), this->fVec)); |
} |
+ |
+} // namespace |