From 5b90cf2f2f3dcda0d674c01859847149b4054608 Mon Sep 17 00:00:00 2001 From: Roland Scheidegger Date: Sat, 10 Jun 2006 00:51:54 +0000 Subject: enable arb_vertex_program by default if drm is new enough. Do a fallback when it's a nv_vp as there could be issues. --- src/mesa/drivers/dri/r200/r200_context.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mesa/drivers/dri/r200/r200_context.c') diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c index 3e41d86314..0e85b9680c 100644 --- a/src/mesa/drivers/dri/r200/r200_context.c +++ b/src/mesa/drivers/dri/r200/r200_context.c @@ -478,7 +478,8 @@ GLboolean r200CreateContext( const __GLcontextModes *glVisual, if (rmesa->r200Screen->drmSupportsBlendColor) { driInitExtensions( ctx, blend_extensions, GL_FALSE ); } - if(driQueryOptionb(&rmesa->optionCache, "arb_vertex_program")) + if(rmesa->r200Screen->drmSupportsVertexProgram || + driQueryOptionb(&rmesa->optionCache, "arb_vertex_program")) driInitSingleExtension( ctx, ARB_vp_extension ); if(driQueryOptionb(&rmesa->optionCache, "nv_vertex_program")) driInitSingleExtension( ctx, NV_vp_extension ); -- cgit v1.2.3