From: Brian Paul Date: Thu, 6 Sep 2012 02:26:28 +0000 (-0600) Subject: mesa: remove #undef CONST in get.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df5eb0c9bc951a8f69ebaa70e6cccdb9e8b27c04;p=mesa.git mesa: remove #undef CONST in get.c Reviewed-by: Matt Turner --- diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index fe1035be8ac..24d2a18fef3 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -61,8 +61,6 @@ * is about as concise as the specification in the old python script. */ -#undef CONST - #define FLOAT_TO_BOOLEAN(X) ( (X) ? GL_TRUE : GL_FALSE ) #define FLOAT_TO_FIXED(F) ( ((F) * 65536.0f > INT_MAX) ? INT_MAX : \ ((F) * 65536.0f < INT_MIN) ? INT_MIN : \