summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_context.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-14 11:52:00 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-14 11:52:00 -0600
commit9f797d8cb323f5f61ac8cffcba3329b6f42721aa (patch)
treec2e22a24e4273a48c938f8fcea164cd6f6830fa1 /src/mesa/state_tracker/st_context.c
parent69466c60a5286328d140a5100580c90e9bf62327 (diff)
Added accum function/files.
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r--src/mesa/state_tracker/st_context.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c
index 7c20b036a4..09d9b1ea3b 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -31,6 +31,7 @@
#include "vbo/vbo.h"
#include "st_public.h"
#include "st_context.h"
+#include "st_cb_accum.h"
#include "st_cb_bufferobjects.h"
#include "st_cb_clear.h"
#include "st_cb_drawpixels.h"
@@ -130,6 +131,7 @@ void st_destroy_context( struct st_context *st )
void st_init_driver_functions(struct dd_function_table *functions)
{
+ st_init_accum_functions(functions);
st_init_bufferobject_functions(functions);
st_init_clear_functions(functions);
st_init_drawpixels_functions(functions);