summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/sources1
-rw-r--r--src/mesa/state_tracker/st_context.c10
2 files changed, 10 insertions, 1 deletions
diff --git a/src/mesa/sources b/src/mesa/sources
index a7c31001c2..8074a43c85 100644
--- a/src/mesa/sources
+++ b/src/mesa/sources
@@ -194,6 +194,7 @@ STATETRACKER_SOURCES = \
state_tracker/st_cb_clear.c \
state_tracker/st_cb_drawpixels.c \
state_tracker/st_cb_program.c \
+ state_tracker/st_cb_teximage.c \
state_tracker/st_draw.c \
state_tracker/st_context.c \
state_tracker/st_texobj.c
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c
index 168ad33d6e..6814eac2dc 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -30,6 +30,7 @@
#include "st_context.h"
#include "st_cb_clear.h"
#include "st_cb_drawpixels.h"
+#include "st_cb_teximage.h"
#include "st_atom.h"
#include "st_draw.h"
#include "st_program.h"
@@ -59,9 +60,11 @@ struct st_context *st_create_context( GLcontext *ctx,
st_init_atoms( st );
st_init_draw( st );
- st_init_cb_program( st );
+
st_init_cb_clear( st );
+ st_init_cb_program( st );
st_init_cb_drawpixels( st );
+ st_init_cb_teximage( st );
return st;
}
@@ -71,7 +74,12 @@ void st_destroy_context( struct st_context *st )
{
st_destroy_atoms( st );
st_destroy_draw( st );
+
+ st_destroy_cb_clear( st );
st_destroy_cb_program( st );
+ st_destroy_cb_drawpixels( st );
+ st_destroy_cb_teximage( st );
+
st->pipe->destroy( st->pipe );
FREE( st );
}