blob: aa588572f886f2c063e1e7573a750700fd9b1963 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkFDot6_DEFINED
11#define SkFDot6_DEFINED
12
13#include "SkMath.h"
14
15typedef int32_t SkFDot6;
16
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000017#define SK_FDot6One (64)
reed@android.com8a1c16f2008-12-17 15:59:43 +000018#define SK_FDot6Half (32)
19
20#ifdef SK_DEBUG
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000021 inline SkFDot6 SkIntToFDot6(S16CPU x) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000022 SkASSERT(SkToS16(x) == x);
23 return x << 6;
24 }
25#else
26 #define SkIntToFDot6(x) ((x) << 6)
27#endif
28
29#define SkFDot6Floor(x) ((x) >> 6)
30#define SkFDot6Ceil(x) (((x) + 63) >> 6)
31#define SkFDot6Round(x) (((x) + 32) >> 6)
32
33#define SkFixedToFDot6(x) ((x) >> 10)
34
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000035inline SkFixed SkFDot6ToFixed(SkFDot6 x) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000036 SkASSERT((x << 10 >> 10) == x);
37
38 return x << 10;
39}
40
41#ifdef SK_SCALAR_IS_FLOAT
42 #define SkScalarToFDot6(x) (SkFDot6)((x) * 64)
43#else
44 #define SkScalarToFDot6(x) ((x) >> 10)
45#endif
46
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000047inline SkFixed SkFDot6Div(SkFDot6 a, SkFDot6 b) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000048 SkASSERT(b != 0);
49
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000050 if (a == (int16_t)a) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000051 return (a << 16) / b;
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000052 } else {
reed@android.com8a1c16f2008-12-17 15:59:43 +000053 return SkFixedDiv(a, b);
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000054 }
reed@android.com8a1c16f2008-12-17 15:59:43 +000055}
56
57#endif
58