summaryrefslogtreecommitdiff
path: root/src/glm/gtx/fast_square_root.inl
blob: 76d0e1567a7951bc951fd8926aaa896e56fc258a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2006-01-04
// Updated : 2008-10-07
// Licence : This source is under MIT License
// File    : glm/gtx/fast_square_root.inl
///////////////////////////////////////////////////////////////////////////////////////////////////

namespace glm{
namespace gtx{
namespace fast_square_root{

// fastSqrt
template <typename genType>
GLM_FUNC_QUALIFIER genType fastSqrt
(
	genType const & x
)
{
    return genType(1) / fastInverseSqrt(x);
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec2<valType> fastSqrt
(
	detail::tvec2<valType> const & x
)
{
    return detail::tvec2<valType>(
        fastSqrt(x.x), 
        fastSqrt(x.y));
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec3<valType> fastSqrt
(
	detail::tvec3<valType> const & x
)
{
    return detail::tvec3<valType>(
        fastSqrt(x.x), 
        fastSqrt(x.y), 
        fastSqrt(x.z));
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec4<valType> fastSqrt
(
	detail::tvec4<valType> const & x
)
{
    return detail::tvec4<valType>(
        fastSqrt(x.x), 
        fastSqrt(x.y), 
        fastSqrt(x.z), 
        fastSqrt(x.w));
}

// fastInversesqrt
template <typename genType>
GLM_FUNC_QUALIFIER genType fastInverseSqrt
(
	genType const & x
)
{
	genType tmp = x;
    float xhalf = 0.5f * float(tmp);
    uint i = *(uint*)&x;
    i = 0x5f375a86 - (i >> 1);
    //x = *(float*)&i;
	//x = *((float*)(char*)&i);
	tmp = detail::uif(i).f;
	tmp = tmp * (1.5f - xhalf * tmp * tmp);
    return genType(tmp);
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec2<valType> fastInverseSqrt
(
	detail::tvec2<valType> const & x
)
{
    return detail::tvec2<valType>(
        fastInverseSqrt(x.x), 
        fastInverseSqrt(x.y));
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec3<valType> fastInverseSqrt
(
	detail::tvec3<valType> const & x
)
{
    return detail::tvec3<valType>(
        fastInverseSqrt(x.x), 
        fastInverseSqrt(x.y), 
        fastInverseSqrt(x.z));
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec4<valType> fastInverseSqrt
(
	detail::tvec4<valType> const & x
)
{
    return detail::tvec4<valType>(
        fastInverseSqrt(x.x), 
        fastInverseSqrt(x.y), 
        fastInverseSqrt(x.z), 
        fastInverseSqrt(x.w));
}

// fastLength
template <typename genType>
GLM_FUNC_QUALIFIER genType fastLength
(
	genType const & x
)
{
    return abs(x);
}

template <typename valType>
GLM_FUNC_QUALIFIER valType fastLength
(
	detail::tvec2<valType> const & x
)
{
    valType sqr = x.x * x.x + x.y * x.y;
    return fastSqrt(sqr);
}

template <typename valType>
GLM_FUNC_QUALIFIER valType fastLength
(
	detail::tvec3<valType> const & x
)
{
    valType sqr = x.x * x.x + x.y * x.y + x.z * x.z;
    return fastSqrt(sqr);
}

template <typename valType>
GLM_FUNC_QUALIFIER valType fastLength
(
	detail::tvec4<valType> const & x
)
{
    valType sqr = x.x * x.x + x.y * x.y + x.z * x.z + x.w * x.w;
    return fastSqrt(sqr);
}

// fastDistance
template <typename genType>
GLM_FUNC_QUALIFIER genType fastDistance
(
	genType const & x, 
	genType const & y
)
{
    return fastLength(y - x);
}

template <typename valType>
GLM_FUNC_QUALIFIER valType fastDistance
(
	detail::tvec2<valType> const & x, 
	detail::tvec2<valType> const & y
)
{
    return fastLength(y - x);
}

template <typename valType>
GLM_FUNC_QUALIFIER valType fastDistance
(
	detail::tvec3<valType> const & x, 
	detail::tvec3<valType> const & y
)
{
    return fastLength(y - x);
}

template <typename valType>
GLM_FUNC_QUALIFIER valType fastDistance
(
	detail::tvec4<valType> const & x, 
	detail::tvec4<valType> const & y
)
{
    return fastLength(y - x);
}

// fastNormalize
template <typename genType>
GLM_FUNC_QUALIFIER genType fastNormalize
(
	genType const & x
)
{
    return x > genType(0) ? genType(1) : -genType(1);
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec2<valType> fastNormalize
(
	detail::tvec2<valType> const & x
)
{
    valType sqr = x.x * x.x + x.y * x.y;
    return x * fastInverseSqrt(sqr);
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec3<valType> fastNormalize
(
	detail::tvec3<valType> const & x
)
{
    valType sqr = x.x * x.x + x.y * x.y + x.z * x.z;
    return x * fastInverseSqrt(sqr);
}

template <typename valType>
GLM_FUNC_QUALIFIER detail::tvec4<valType> fastNormalize
(
	detail::tvec4<valType> const & x
)
{
    valType sqr = x.x * x.x + x.y * x.y + x.z * x.z + x.w * x.w;
    return x * fastInverseSqrt(sqr);
}

}//namespace fast_square_root
}//namespace gtx
}//namespace glm