зеркало из https://github.com/mozilla/moz-skia.git
win can't eat 1.0p+23 syntax for floats :(
git-svn-id: http://skia.googlecode.com/svn/trunk@4067 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
Родитель
a7d7461cf0
Коммит
c3b697298e
|
@ -17,8 +17,12 @@ static float sk_fsel(float pred, float result_ge, float result_lt) {
|
|||
}
|
||||
|
||||
static float fast_floor(float x) {
|
||||
#ifdef SK_BUILD_FOR_WIN
|
||||
return sk_float_floor(x);
|
||||
#else
|
||||
float big = sk_fsel(x, 0x1.0p+23, -0x1.0p+23);
|
||||
return (x + big) - big;
|
||||
#endif
|
||||
}
|
||||
|
||||
static float std_floor(float x) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче