From: Ian Romanick Date: Thu, 30 Sep 2010 23:29:46 +0000 (-0700) Subject: mesa: Enable GL_ARB_texture_rg in software paths X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ef390dc14edd0adc0fa0d07c64621b0f220edd8;p=mesa.git mesa: Enable GL_ARB_texture_rg in software paths --- diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 9b723ef74bd..e7116d789e8 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -270,6 +270,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) /*ctx->Extensions.ARB_texture_float = GL_TRUE;*/ ctx->Extensions.ARB_texture_mirrored_repeat = GL_TRUE; ctx->Extensions.ARB_texture_non_power_of_two = GL_TRUE; + ctx->Extensions.ARB_texture_rg = GL_TRUE; ctx->Extensions.ARB_vertex_array_object = GL_TRUE; #if FEATURE_ARB_vertex_program ctx->Extensions.ARB_vertex_program = GL_TRUE;