diff options
author | Brian Paul <[email protected]> | 2009-09-19 12:58:55 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-19 16:43:16 -0600 |
commit | 651cffd626a82d9bf539437ca4bdf8ea4b396fab (patch) | |
tree | 4c9d7e17e7d1ae78bc62dfffc4183bef8e92db5c /src/mesa/drivers/dri/intel | |
parent | b8477f079bd72d15b2d4e9c1453374d744da5ce7 (diff) |
mesa: move _mesa_meta_init/free() calls to core Mesa
Diffstat (limited to 'src/mesa/drivers/dri/intel')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_context.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c index 03db8b1c68e..ab1cf403875 100644 --- a/src/mesa/drivers/dri/intel/intel_context.c +++ b/src/mesa/drivers/dri/intel/intel_context.c @@ -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); |