From: Brian Paul Date: Tue, 8 May 2012 15:32:43 +0000 (-0600) Subject: mesa: remove needless casts in save_EdgeFlag() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad5e3609d4efd320dae87c3178f191ee0a3ce4ed;p=mesa.git mesa: remove needless casts in save_EdgeFlag() --- 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); }