summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_context.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-21 20:15:00 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-08-21 20:18:58 -0600
commitaf3d6c83d245c3a5b2af3bddfc261c3678afb7d1 (patch)
treeeebb736b3b49167f0b9bec2545d93ed9063b780c /src/mesa/state_tracker/st_context.c
parent88e12872fa3e1d1d2aa33653b3bf2b6982b2fafd (diff)
temporarily call _mesa_enable_sw_extensions() so we can run more test progs without failing the extension checks
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r--src/mesa/state_tracker/st_context.c3
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 9e89ece52e..42263cab64 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -87,6 +87,9 @@ struct st_context *st_create_context( GLcontext *ctx,
st_init_cb_texture( st );
#endif
+ /* XXXX This is temporary! */
+ _mesa_enable_sw_extensions(ctx);
+
return st;
}