Mesa (master): mesa: remove needless casts in save_EdgeFlag()

Brian Paul brianp at kemper.freedesktop.org
Tue May 8 19:14:15 UTC 2012


Module: Mesa
Branch: master
Commit: ad5e3609d4efd320dae87c3178f191ee0a3ce4ed
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ad5e3609d4efd320dae87c3178f191ee0a3ce4ed

Author: Brian Paul <brianp at vmware.com>
Date:   Tue May  8 09:32:43 2012 -0600

mesa: remove needless casts in save_EdgeFlag()

---

 src/mesa/main/dlist.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index a90ff33..c1c65ea 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -5673,7 +5673,7 @@ save_Indexfv(const GLfloat * v)
 static void GLAPIENTRY
 save_EdgeFlag(GLboolean x)
 {
-   save_Attr1fNV(VERT_ATTRIB_EDGEFLAG, x ? (GLfloat)1.0 : (GLfloat)0.0);
+   save_Attr1fNV(VERT_ATTRIB_EDGEFLAG, x ? 1.0f : 0.0f);
 }
 
 




More information about the mesa-commit mailing list