summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-05-08 09:32:43 -0600
committerBrian Paul <[email protected]>2012-05-08 12:12:03 -0600
commitad5e3609d4efd320dae87c3178f191ee0a3ce4ed (patch)
tree3ff86675de395298e42cc9c5ee5e10da72911357
parent2428de1c501f75453248611edd6f717285d3156d (diff)
mesa: remove needless casts in save_EdgeFlag()
-rw-r--r--src/mesa/main/dlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index a90ff33bd30..c1c65ea25d2 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);
}