hook in teximage bits

This commit is contained in:
Brian 2007-08-02 20:40:19 -06:00
parent 66ae07854e
commit 61d0215d7b
2 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -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 );
}