mesa: move _mesa_meta_init/free() calls to core Mesa
authorBrian Paul <brianp@vmware.com>
Sat, 19 Sep 2009 18:58:55 +0000 (12:58 -0600)
committerBrian Paul <brianp@vmware.com>
Sat, 19 Sep 2009 22:43:16 +0000 (16:43 -0600)
src/mesa/drivers/dri/intel/intel_context.c
src/mesa/drivers/dri/radeon/radeon_common_context.c
src/mesa/drivers/x11/xm_api.c
src/mesa/main/context.c

index 03db8b1c68e811209b2e1fb4a9e78aa234c62aa2..ab1cf4038750aaa1acf4f4013f2e3a65fdca0725 100644 (file)
@@ -38,7 +38,6 @@
 #include "swrast_setup/swrast_setup.h"
 #include "tnl/tnl.h"
 #include "drivers/common/driverfuncs.h"
-#include "drivers/common/meta.h"
 
 #include "i830_dri.h"
 
@@ -712,8 +711,6 @@ intelInitContext(struct intel_context *intel,
    _swrast_allow_pixel_fog(ctx, GL_FALSE);
    _swrast_allow_vertex_fog(ctx, GL_TRUE);
 
-   _mesa_meta_init(ctx);
-
    intel->hw_stencil = mesaVis->stencilBits && mesaVis->depthBits == 24;
    intel->hw_stipple = 1;
 
@@ -817,8 +814,6 @@ intelDestroyContext(__DRIcontextPrivate * driContextPriv)
 
       INTEL_FIREVERTICES(intel);
 
-      _mesa_meta_free(&intel->ctx);
-
       meta_destroy_metaops(&intel->meta);
 
       intel->vtbl.destroy(intel);
index 1c53c04da77905e75d33fc4eefb8eae87d35139c..d4bea86796800dffafcd8d2d85e6249142744d23 100644 (file)
@@ -37,7 +37,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 #include "utils.h"
 #include "vblank.h"
 #include "drirenderbuffer.h"
-#include "drivers/common/meta.h"
 #include "main/context.h"
 #include "main/framebuffer.h"
 #include "main/renderbuffer.h"
@@ -209,8 +208,6 @@ GLboolean radeonInitContext(radeonContextPtr radeon,
 
        meta_init_metaops(ctx, &radeon->meta);
 
-       _mesa_meta_init(ctx);
-
        /* DRI fields */
        radeon->dri.context = driContextPriv;
        radeon->dri.screen = sPriv;
@@ -306,8 +303,6 @@ void radeonDestroyContext(__DRIcontextPrivate *driContextPriv )
 
        assert(radeon);
 
-       _mesa_meta_free(radeon->glCtx);
-
        if (radeon == current) {
                radeon_firevertices(radeon);
                _mesa_make_current(NULL, NULL, NULL);
index 662c61ae7e704680762b0ffce90ae8316ab9dd9f..90efd86a6b7971af3e9b4d5b3388b47fa2e0b9bb 100644 (file)
@@ -79,7 +79,6 @@
 #include "tnl/t_context.h"
 #include "tnl/t_pipeline.h"
 #include "drivers/common/driverfuncs.h"
-#include "drivers/common/meta.h"
 
 /**
  * Global X driver lock
@@ -1648,9 +1647,6 @@ XMesaContext XMesaCreateContext( XMesaVisual v, XMesaContext share_list )
    xmesa_register_swrast_functions( mesaCtx );
    _swsetup_Wakeup(mesaCtx);
 
-   if (TEST_META_FUNCS)
-      _mesa_meta_init(mesaCtx);
-
    return c;
 }
 
@@ -1665,9 +1661,6 @@ void XMesaDestroyContext( XMesaContext c )
    FXdestroyContext( XMESA_BUFFER(mesaCtx->DrawBuffer) );
 #endif
 
-   if (TEST_META_FUNCS)
-      _mesa_meta_free( mesaCtx );
-
    _swsetup_DestroyContext( mesaCtx );
    _swrast_DestroyContext( mesaCtx );
    _tnl_DestroyContext( mesaCtx );
index f6d4ac459579dde85c03b3f69034fae8d431e7a3..4c69e688da69e96d4a1a747ba7cdceeed46551ce 100644 (file)
 #include "version.h"
 #include "viewport.h"
 #include "vtxfmt.h"
+#include "drivers/common/meta.h"
 #include "glapi/glthread.h"
 #include "glapi/glapioffsets.h"
 #include "glapi/glapitable.h"
@@ -926,6 +927,8 @@ _mesa_initialize_context(GLcontext *ctx,
    _mesa_initialize_context_extra(ctx);
 #endif
 
+   _mesa_meta_init(ctx);
+
    ctx->FirstTimeCurrent = GL_TRUE;
 
    return GL_TRUE;
@@ -991,6 +994,8 @@ _mesa_free_context_data( GLcontext *ctx )
       _mesa_make_current(ctx, NULL, NULL);
    }
 
+   _mesa_meta_free(ctx);
+
    /* unreference WinSysDraw/Read buffers */
    _mesa_reference_framebuffer(&ctx->WinSysDrawBuffer, NULL);
    _mesa_reference_framebuffer(&ctx->WinSysReadBuffer, NULL);