Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: src/opts/SkBlitRow_opts_SSE4.h

Issue 363983004: Exclude Clang on Windows too. Comment this up a bit. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: comment Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The Android Open Source Project 2 * Copyright 2014 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkBlitRow_opts_SSE4_DEFINED 8 #ifndef SkBlitRow_opts_SSE4_DEFINED
9 #define SkBlitRow_opts_SSE4_DEFINED 9 #define SkBlitRow_opts_SSE4_DEFINED
10 10
11 #include "SkBlitRow.h" 11 #include "SkBlitRow.h"
12 12
13 /* Check if we are able to build assembly code, GCC/AT&T syntax. 13 /* Check if we are able to build assembly code, GCC/AT&T syntax:
14 * Had problems with LLVM-GCC 4.2. 14 * 1) Clang and GCC are generally OK. OS X's old LLVM-GCC 4.2 can't handle it;
15 * MemorySanitizer cannot handle assembly code. 15 * 2) We're intentionally not linking this in even when supported (Clang) on Wi ndows;
16 * 3) MemorySanitizer cannot instrument assembly at all.
16 */ 17 */
17 #if (defined(__clang__) || (defined(__GNUC__) && !defined(SK_BUILD_FOR_MAC))) \ 18 #if /* 1)*/ (defined(__clang__) || (defined(__GNUC__) && !defined(SK_BUILD_FOR_M AC))) \
18 && !defined(MEMORY_SANITIZER) 19 /* 2)*/ && !defined(SK_BUILD_FOR_WIN) \
20 /* 3)*/ && !defined(MEMORY_SANITIZER)
19 extern "C" void S32A_Opaque_BlitRow32_SSE4_asm(SkPMColor* SK_RESTRICT dst, 21 extern "C" void S32A_Opaque_BlitRow32_SSE4_asm(SkPMColor* SK_RESTRICT dst,
20 const SkPMColor* SK_RESTRICT src, 22 const SkPMColor* SK_RESTRICT src,
21 int count, U8CPU alpha); 23 int count, U8CPU alpha);
22 24
23 #define SK_ATT_ASM_SUPPORTED 25 #define SK_ATT_ASM_SUPPORTED
24 #endif 26 #endif
25 27
26 #endif 28 #endif
27 29
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698