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=45b12edcbe2c112a87993f810f832a9141085b17;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 c60b58a4926..6f683d2fe60 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -413,6 +413,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;