diff options
author | mtklein <mtklein@google.com> | 2014-10-16 15:27:47 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-16 15:27:47 -0700 |
commit | 234819990753fed96978b691d8ff8f7a57897fcb (patch) | |
tree | 6658846b90529d06b19f0e084a30890bc56fe7f6 /include | |
parent | 90c7992bfc6330f070f7704d63372a0ec8410170 (diff) |
Revert of Start to vectorize SkTileGrid. (patchset #45 id:1430002 of https://codereview.chromium.org/634543004/)
Reason for revert:
Many GCC bots missing __builtin_shuffle, e.g. Test-Ubuntu12-ShuttleA-GTX660-x86-Debug-Trybot.
Original issue's description:
> Start to vectorize SkTileGrid.
>
> This adds Sk4x.h to help.
>
> BUG=skia:
>
> Committed: https://skia.googlesource.com/skia/+/90c7992bfc6330f070f7704d63372a0ec8410170
TBR=reed@google.com,mtklein@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Review URL: https://codereview.chromium.org/663663002
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkTypes.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/core/SkTypes.h b/include/core/SkTypes.h index 2625b7343d..0e9e230349 100644 --- a/include/core/SkTypes.h +++ b/include/core/SkTypes.h @@ -300,9 +300,6 @@ static inline bool SkIsU16(long x) { #define SkAlign8(x) (((x) + 7) >> 3 << 3) #define SkIsAlign8(x) (0 == ((x) & 7)) -#define SkAlign16(x) (((x) + 15) >> 4 << 4) -#define SkIsAlign16(x) (0 == ((x) & 15)) - #define SkAlignPtr(x) (sizeof(void*) == 8 ? SkAlign8(x) : SkAlign4(x)) #define SkIsAlignPtr(x) (sizeof(void*) == 8 ? SkIsAlign8(x) : SkIsAlign4(x)) |