diff options
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 */ |