diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-07 08:18:50 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-07 08:20:00 -0700 |
commit | 601a9ea9a79603763651db8dd93351691594b444 (patch) | |
tree | 7cd3254b435e9c017ddc2049509465a1a1e99eb5 | |
parent | 6c4447e6a8ecfcfb094ab2ad8b7371dfa2b7d7bb (diff) |
init glsl functions in st_init_driver_functions()
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 3810729847..a4ec3721be 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -29,6 +29,7 @@ #include "main/context.h" #include "main/extensions.h" #include "vbo/vbo.h" +#include "drivers/common/driverfuncs.h" #include "st_public.h" #include "st_context.h" #include "st_cb_accum.h" @@ -180,6 +181,8 @@ void st_copy_context_state(struct st_context *dst, void st_init_driver_functions(struct dd_function_table *functions) { + _mesa_init_glsl_driver_functions(functions); + st_init_accum_functions(functions); st_init_bufferobject_functions(functions); st_init_clear_functions(functions); |