Index: src/opts/SkBlitRow_opts_SSE4.h |
diff --git a/src/opts/SkBlitRow_opts_SSE4.h b/src/opts/SkBlitRow_opts_SSE4.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b34dbf0594a7544c6baf90f851e190d41e6cd0a0 |
--- /dev/null |
+++ b/src/opts/SkBlitRow_opts_SSE4.h |
@@ -0,0 +1,20 @@ |
+/* |
+ * Copyright 2013 The Android Open Source Project |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#ifndef SkBlitRow_opts_SSE4_DEFINED |
+#define SkBlitRow_opts_SSE4_DEFINED |
+ |
+#include "SkBlitRow.h" |
+ |
+#if defined(__clang__) || (defined(__GNUC__) && !defined(SK_BUILD_FOR_MAC)) |
mtklein
2014/06/17 15:14:29
So, help me parse this condition now?
Clang ->
henrik.smiding
2014/06/17 18:16:38
Correct.
Added a flag and updated the two checks i
|
+extern "C" void S32A_Opaque_BlitRow32_SSE4_asm(SkPMColor* SK_RESTRICT dst, |
+ const SkPMColor* SK_RESTRICT src, |
+ int count, U8CPU alpha); |
+#endif |
+ |
+#endif |
+ |