projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1741bc1
)
dri/swrast: call _mesa_meta_init/free()
author
Brian Paul
<brianp@vmware.com>
Mon, 21 Sep 2009 04:13:28 +0000
(22:13 -0600)
committer
Brian Paul
<brianp@vmware.com>
Mon, 21 Sep 2009 04:13:28 +0000
(22:13 -0600)
src/mesa/drivers/dri/swrast/swrast.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/swrast/swrast.c
b/src/mesa/drivers/dri/swrast/swrast.c
index 3016987d561bd318153651299f96508749d03878..cd499cd5d2e2769f4880d58e82563f1bd05143a9 100644
(file)
--- a/
src/mesa/drivers/dri/swrast/swrast.c
+++ b/
src/mesa/drivers/dri/swrast/swrast.c
@@
-43,6
+43,7
@@
#include "tnl/t_pipeline.h"
#include "vbo/vbo.h"
#include "drivers/common/driverfuncs.h"
+#include "drivers/common/meta.h"
#include "utils.h"
#include "swrast_priv.h"
@@
-649,6
+650,8
@@
driCreateNewContext(__DRIscreen *screen, const __DRIconfig *config,
_mesa_enable_2_0_extensions(mesaCtx);
_mesa_enable_2_1_extensions(mesaCtx);
+ _mesa_meta_init(mesaCtx);
+
return ctx;
}
@@
-660,6
+663,7
@@
driDestroyContext(__DRIcontext *ctx)
if (ctx) {
mesaCtx = &ctx->Base;
+ _mesa_meta_free(mesaCtx);
_swsetup_DestroyContext( mesaCtx );
_swrast_DestroyContext( mesaCtx );
_tnl_DestroyContext( mesaCtx );