This website works better with JavaScript.
Home
Explore
Help
Sign In
brkho
/
mesa
Watch
1
Star
0
Fork
0
Code
Releases
562
Wiki
Activity
Browse Source
util: Silence compiler warnings on Windows.
tags/mesa_20090313
Michal Krol
17 years ago
parent
f3dfd5969d
commit
e7ff7f78be
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
src/gallium/auxiliary/util/u_math.c
+ 1
- 1
src/gallium/auxiliary/util/u_math.c
View File
@@ -39,7 +39,7 @@ init_pow2_table(void)
{
int i;
for (i = 0; i < POW2_TABLE_SIZE; i++) {
pow2_table[i] = pow(2.0, i / POW2_TABLE_SCALE);
pow2_table[i] =
(float)
pow(2.0, i / POW2_TABLE_SCALE);
}
}
Write
Preview
Loading…
Cancel
Save