summaryrefslogtreecommitdiff
path: root/src/mesa/main/context.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-01-18 17:36:16 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-01-18 17:36:16 +0000
commit5666c636936be761e7928566e82b5af2e95a11ce (patch)
tree4d0f56b1687dcd0ac4b0cc88563dff90d04c82a1 /src/mesa/main/context.h
parent187bce0724fe0606614df3de57c2dc2b65623545 (diff)
renamed CURRENT_INPUT to _mesa_CurrentInput
Diffstat (limited to 'src/mesa/main/context.h')
-rw-r--r--src/mesa/main/context.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h
index 237b318440..97e9d6a808 100644
--- a/src/mesa/main/context.h
+++ b/src/mesa/main/context.h
@@ -1,10 +1,10 @@
-/* $Id: context.h,v 1.10 2000/01/14 04:45:47 brianp Exp $ */
+/* $Id: context.h,v 1.11 2000/01/18 17:36:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -140,16 +140,16 @@ do { \
#else
-extern struct immediate *CURRENT_INPUT;
+extern struct immediate *_mesa_CurrentInput;
#define GET_CURRENT_CONTEXT(C) GLcontext *C = _glapi_CurrentContext
-#define GET_IMMEDIATE struct immediate *IM = CURRENT_INPUT
+#define GET_IMMEDIATE struct immediate *IM = _mesa_CurrentInput
#define SET_IMMEDIATE(ctx, im) \
do { \
ctx->input = im; \
- CURRENT_INPUT = im; \
+ _mesa_CurrentInput = im; \
} while (0)
#endif