summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/common
diff options
context:
space:
mode:
authorDave Airlie <airlied@gmail.com>2012-09-15 13:09:05 +1000
committerDave Airlie <airlied@gmail.com>2012-09-15 18:03:03 +1000
commit36639ec6e9a2758e344235fbdc1450719d8851e3 (patch)
tree5697cd4cb4cb9a19c91bdc434d5067bde1431ebd /src/mesa/drivers/common
parent7056193a4311f09de5e7280ce474aeec88865d2f (diff)
meta: make mem_ctx non-global.
I can't see any external users, and this is a global symbol, Reviewed-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r--src/mesa/drivers/common/meta.c2
-rw-r--r--src/mesa/drivers/common/meta.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c
index 677548e94eb..ff701ba871b 100644
--- a/src/mesa/drivers/common/meta.c
+++ b/src/mesa/drivers/common/meta.c
@@ -78,7 +78,7 @@
#include "main/glformats.h"
#include "../glsl/ralloc.h"
-
+static void *mem_ctx;
/** Return offset in bytes of the field within a vertex struct */
#define OFFSET(FIELD) ((void *) offsetof(struct vertex, FIELD))
diff --git a/src/mesa/drivers/common/meta.h b/src/mesa/drivers/common/meta.h
index 8a6b33b3235..d8dfb56f9b1 100644
--- a/src/mesa/drivers/common/meta.h
+++ b/src/mesa/drivers/common/meta.h
@@ -58,8 +58,6 @@
#define MESA_META_MULTISAMPLE 0x100000
/**\}*/
-void *mem_ctx;
-
extern void
_mesa_meta_init(struct gl_context *ctx);