зеркало из https://github.com/mozilla/moz-skia.git
Added cast to get MathTest working on Windows
git-svn-id: http://skia.googlecode.com/svn/trunk@4072 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
Родитель
d32369e745
Коммит
00bf06a142
|
@ -19,7 +19,7 @@ static float sk_fsel(float pred, float result_ge, float result_lt) {
|
|||
static float fast_floor(float x) {
|
||||
// float big = sk_fsel(x, 0x1.0p+23, -0x1.0p+23);
|
||||
float big = sk_fsel(x, (float)(1 << 23), -(float)(1 << 23));
|
||||
return (x + big) - big;
|
||||
return (float)(x + big) - big;
|
||||
}
|
||||
|
||||
static float std_floor(float x) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче