diff options
author | Brian Paul <[email protected]> | 2012-09-05 20:26:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-09-05 21:20:31 -0600 |
commit | df5eb0c9bc951a8f69ebaa70e6cccdb9e8b27c04 (patch) | |
tree | ef550ce21849d4709d02d6fae000d6c19eded71e /src | |
parent | 97992b05fb1b484ac94958f7cf7546f35208b0c8 (diff) |
mesa: remove #undef CONST in get.c
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/get.c | 2 |
1 files changed, 0 insertions, 2 deletions
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 : \ |