meta: make mem_ctx non-global.
authorDave Airlie <airlied@gmail.com>
Sat, 15 Sep 2012 03:09:05 +0000 (13:09 +1000)
committerDave Airlie <airlied@gmail.com>
Sat, 15 Sep 2012 08:03:03 +0000 (18:03 +1000)
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>
src/mesa/drivers/common/meta.c
src/mesa/drivers/common/meta.h

index 677548e94ebb3c1cfb81693e38462dd783afa473..ff701ba871b9e4412f3db4b003efb2f8c37c6768 100644 (file)
@@ -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))
 
index 8a6b33b3235a073710b74479edc47cc8ae556d7e..d8dfb56f9b12804ab0b138741c0be22cb962206a 100644 (file)
@@ -58,8 +58,6 @@
 #define MESA_META_MULTISAMPLE          0x100000
 /**\}*/
 
-void *mem_ctx;
-
 extern void
 _mesa_meta_init(struct gl_context *ctx);