diff options
author | Aapo Tahkola <aet@rasterburn.org> | 2006-01-27 14:03:22 +0000 |
---|---|---|
committer | Aapo Tahkola <aet@rasterburn.org> | 2006-01-27 14:03:22 +0000 |
commit | 0fcfa1c5b000f239cee1849a17f572ef5098cd31 (patch) | |
tree | eb40f225e225ffa364adf3600121b0bf7d4bc269 /src/mesa/drivers/dri/r300/r300_context.c | |
parent | e797bc8bbe23480c3fca3654ce1c980d103520d1 (diff) |
enable hw vertex programs by default
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_context.c')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_context.c b/src/mesa/drivers/dri/r300/r300_context.c index 3e18725f04..31b643383a 100644 --- a/src/mesa/drivers/dri/r300/r300_context.c +++ b/src/mesa/drivers/dri/r300/r300_context.c @@ -68,8 +68,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "xmlpool.h" /* for symbolic values of enum-type options */ /* hw_tcl_on derives from future_hw_tcl_on when its safe to change it. */ -int future_hw_tcl_on=0; -int hw_tcl_on=0; +int future_hw_tcl_on=1; +int hw_tcl_on=1; #define need_GL_ARB_multisample #define need_GL_ARB_texture_compression |