diff options
author | Brian Paul <[email protected]> | 2006-07-20 03:56:16 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-07-20 03:56:16 +0000 |
commit | 4e2de9531e4869edf12536c2cb37d3145ee4065c (patch) | |
tree | 9c2e041cb11eb10a9aa3c3b6a5faa136adf03048 /src | |
parent | ad15866ef0e77478508eeb534b28f0136462b644 (diff) |
remove unused NEED_TWO_SIDED_LIGHTING() macro
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/context.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index 9c6ef520792..b4d3a4750ba 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -308,12 +308,6 @@ do { \ /** - * Macros to help evaluate current state conditions - */ - -/*@{*/ - -/** * Is the secondary color needed? */ #define NEED_SECONDARY_COLOR(CTX) \ @@ -327,14 +321,4 @@ do { \ ) -/** - * Is two-sided lighting in effect? - */ -#define NEED_TWO_SIDED_LIGHTING(CTX) \ - (ctx->Light.Enabled && ctx->Light.Model.TwoSide) - - -/*@}*/ - - -#endif +#endif /* CONTEXT_H */ |