projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21c57a6
)
gallium/util: indentation fix
author
Brian Paul
<brianp@vmware.com>
Thu, 19 Feb 2015 16:29:18 +0000
(09:29 -0700)
committer
Brian Paul
<brianp@vmware.com>
Thu, 19 Feb 2015 22:36:59 +0000
(15:36 -0700)
src/gallium/auxiliary/util/u_math.h
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/util/u_math.h
b/src/gallium/auxiliary/util/u_math.h
index 5db5b6699617a493c0c5f9e7c940c8ab98d2002b..157b721c460723374d17d1dfc2835519d13624c0 100644
(file)
--- a/
src/gallium/auxiliary/util/u_math.h
+++ b/
src/gallium/auxiliary/util/u_math.h
@@
-608,9
+608,9
@@
fui( float f )
static INLINE float
uif(uint32_t ui)
{
-
union fi fi;
-
fi.ui = ui;
-
return fi.f;
+ union fi fi;
+ fi.ui = ui;
+ return fi.f;
}