summaryrefslogtreecommitdiff
path: root/src/mesa/main/context.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-07-20 03:56:16 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-07-20 03:56:16 +0000
commit4e2de9531e4869edf12536c2cb37d3145ee4065c (patch)
tree9c2e041cb11eb10a9aa3c3b6a5faa136adf03048 /src/mesa/main/context.h
parentad15866ef0e77478508eeb534b28f0136462b644 (diff)
remove unused NEED_TWO_SIDED_LIGHTING() macro
Diffstat (limited to 'src/mesa/main/context.h')
-rw-r--r--src/mesa/main/context.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h
index 9c6ef52079..b4d3a4750b 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 */