From: Brian Date: Wed, 22 Aug 2007 02:15:00 +0000 (-0600) Subject: temporarily call _mesa_enable_sw_extensions() so we can run more test progs without... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af3d6c83d245c3a5b2af3bddfc261c3678afb7d1;p=mesa.git temporarily call _mesa_enable_sw_extensions() so we can run more test progs without failing the extension checks --- diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 9e89ece52e1..42263cab648 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; }