summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian@i915.localnet.net>2007-08-02 14:21:16 -0600
committerBrian <brian@i915.localnet.net>2007-08-02 14:21:16 -0600
commit184b6a1f04e060e73858438561a0261d32eeb506 (patch)
treec4bebde046bba63106e72b1704c8c8b50ff2ac85
parent4df8e90a01b395801c47ea897b80637a749c246b (diff)
call st_init_cb_drawpixels
-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 cde1dd11ca..168ad33d6e 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -29,6 +29,7 @@
#include "st_public.h"
#include "st_context.h"
#include "st_cb_clear.h"
+#include "st_cb_drawpixels.h"
#include "st_atom.h"
#include "st_draw.h"
#include "st_program.h"
@@ -60,6 +61,7 @@ struct st_context *st_create_context( GLcontext *ctx,
st_init_draw( st );
st_init_cb_program( st );
st_init_cb_clear( st );
+ st_init_cb_drawpixels( st );
return st;
}