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

Side by Side Diff: include/private/SkCpu.h

Issue 2133413002: try to speed-up maprect + round2i + contains (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
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 SkCpu_DEFINED 8 #ifndef SkCpu_DEFINED
9 #define SkCpu_DEFINED 9 #define SkCpu_DEFINED
10 10
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 #if defined(SK_CPU_ARM64) 82 #if defined(SK_CPU_ARM64)
83 features |= NEON|NEON_FMA|VFP_FP16; 83 features |= NEON|NEON_FMA|VFP_FP16;
84 #endif 84 #endif
85 85
86 #endif 86 #endif
87 return (features & mask) == mask; 87 return (features & mask) == mask;
88 } 88 }
89 89
90 #endif//SkCpu_DEFINED 90 #endif//SkCpu_DEFINED
OLDNEW
« include/core/SkRect.h ('K') | « include/core/SkRect.h ('k') | include/private/SkNx.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698