summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_context.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-08-10 16:42:26 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2007-08-10 16:44:07 +0100
commit39407fd85467141fceafbedf52d9e55e008eb011 (patch)
treec3580533e9e37c1d410eb6bb8f24fd192f27dbcc /src/mesa/state_tracker/st_context.c
parent1c8bcc733d695732ca704565b3a10ac5f4172ea3 (diff)
Move string functions to state_tracker, add queries to pipe, winsys.
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 2bdcc6caf3..7bb9cbda45 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -35,6 +35,7 @@
#include "st_cb_readpixels.h"
#include "st_cb_texture.h"
#include "st_cb_flush.h"
+#include "st_cb_strings.h"
#include "st_atom.h"
#include "st_draw.h"
#include "st_program.h"
@@ -111,4 +112,5 @@ void st_init_driver_functions(struct dd_function_table *functions)
st_init_readpixels_functions(functions);
st_init_texture_functions(functions);
st_init_flush_functions(functions);
+ st_init_string_functions(functions);
}