diff options
author | Roland Scheidegger <[email protected]> | 2006-08-19 08:54:03 +0000 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2006-08-19 08:54:03 +0000 |
commit | bd4c8ec0ec1edcc96fe841ccc7159b7856ade5c1 (patch) | |
tree | bf32db5b8a0dd66ecfb2f4dd06a74253d3aa3e35 /src/mesa/drivers/dri/r200 | |
parent | c6fc82398722a165da4c5b89359035222b946d89 (diff) |
remove the now confusing option to manually enable software ARB_vp if drm is not new enough on r200
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_context.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c index 0e85b9680ce..7a8f270160f 100644 --- a/src/mesa/drivers/dri/r200/r200_context.c +++ b/src/mesa/drivers/dri/r200/r200_context.c @@ -478,8 +478,7 @@ GLboolean r200CreateContext( const __GLcontextModes *glVisual, if (rmesa->r200Screen->drmSupportsBlendColor) { driInitExtensions( ctx, blend_extensions, GL_FALSE ); } - if(rmesa->r200Screen->drmSupportsVertexProgram || - driQueryOptionb(&rmesa->optionCache, "arb_vertex_program")) + if(rmesa->r200Screen->drmSupportsVertexProgram) driInitSingleExtension( ctx, ARB_vp_extension ); if(driQueryOptionb(&rmesa->optionCache, "nv_vertex_program")) driInitSingleExtension( ctx, NV_vp_extension ); |