44
44
#ifndef SHADER_FAST_MATH_INC_FX
45
45
#define SHADER_FAST_MATH_INC_FX
46
46
47
+ #include "Common/Math.hlsli"
48
+
47
49
// Define switch for PC compilation
48
50
#ifdef _PC
49
51
# define asint (_x) *reinterpret_cast<int *>(&_x);
@@ -249,8 +251,6 @@ namespace FastMath
249
251
//
250
252
// Trigonometric functions
251
253
//
252
- static const float fsl_PI = 3.1415926535897932384626433f ;
253
- static const float fsl_HALF_PI = 0.5f * fsl_PI;
254
254
255
255
// 4th order polynomial approximation
256
256
// 4 VGRP, 16 ALU Full Rate
@@ -270,7 +270,7 @@ namespace FastMath
270
270
271
271
// acos function mirroring
272
272
// check per platform if compiles to a selector - no branch neeeded
273
- return inX >= 0.0f ? s : fsl_PI - s;
273
+ return inX >= 0.0f ? s : Math::PI - s;
274
274
}
275
275
276
276
// 4th order polynomial approximation
@@ -281,7 +281,7 @@ namespace FastMath
281
281
float x = inX;
282
282
283
283
// asin is offset of acos
284
- return fsl_HALF_PI - acosFast4 (x);
284
+ return Math::HALF_PI - acosFast4 (x);
285
285
}
286
286
287
287
// 4th order hyperbolical approximation
@@ -305,17 +305,17 @@ namespace FastMath
305
305
float ACos (float inX)
306
306
{
307
307
float x = abs (inX);
308
- float res = -0.156583f * x + fsl_HALF_PI ;
308
+ float res = -0.156583f * x + Math::HALF_PI ;
309
309
res *= fastSqrtNR0 (1.0f - x);
310
- return (inX >= 0 ) ? res : fsl_PI - res;
310
+ return (inX >= 0 ) ? res : Math::PI - res;
311
311
}
312
312
313
313
// Same cost as Acos + 1 FR
314
314
// Same error
315
315
// input [-1, 1] and output [-PI/2, PI/2]
316
316
float ASin (float x)
317
317
{
318
- return fsl_HALF_PI - ACos (x);
318
+ return Math::HALF_PI - ACos (x);
319
319
}
320
320
321
321
// max absolute error 1.3x10^-3
@@ -330,7 +330,7 @@ namespace FastMath
330
330
poly = -0.301895f + poly * t1;
331
331
poly = 1.0f + poly * t1;
332
332
poly = poly * t0;
333
- return (x < 1.0f ) ? poly : fsl_HALF_PI - poly;
333
+ return (x < 1.0f ) ? poly : Math::HALF_PI - poly;
334
334
}
335
335
336
336
// 4 VGPR, 16 FR (12 FR, 1 QR), 2 scalar
0 commit comments