From: Alan Hourihane Date: Thu, 6 Aug 2009 14:54:49 +0000 (+0100) Subject: Ensure GL_EXT_blend_equation_separate is enabled when 2.0 is enabled. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c223e8eb6359d5df918e23ae5c036fa134cc40d;p=mesa.git Ensure GL_EXT_blend_equation_separate is enabled when 2.0 is enabled. --- diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 5c4bea9cf62..ebbe28acf48 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -404,6 +404,7 @@ _mesa_enable_2_0_extensions(GLcontext *ctx) ctx->Extensions.ARB_fragment_shader = GL_TRUE; #endif ctx->Extensions.ARB_point_sprite = GL_TRUE; + ctx->Extensions.EXT_blend_equation_separate = GL_TRUE; ctx->Extensions.ARB_texture_non_power_of_two = GL_TRUE; #if FEATURE_ARB_shader_objects ctx->Extensions.ARB_shader_objects = GL_TRUE;