diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-08-21 20:15:00 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-08-21 20:18:58 -0600 |
commit | af3d6c83d245c3a5b2af3bddfc261c3678afb7d1 (patch) | |
tree | eebb736b3b49167f0b9bec2545d93ed9063b780c /src/mesa/state_tracker/st_context.c | |
parent | 88e12872fa3e1d1d2aa33653b3bf2b6982b2fafd (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.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 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; } |