From: Ian Romanick Date: Tue, 23 Aug 2011 02:01:27 +0000 (-0700) Subject: intel: Remove redundant GL_ARB_window_pos enable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2bf30b1cccab7026bf3cb7825cc876eea0dcb19b;p=mesa.git intel: Remove redundant GL_ARB_window_pos enable This extension is enabled by default in _mesa_init_extensions, so drivers don't need to enable it again. Reviewed-by: Brian Paul Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/intel/intel_extensions.c b/src/mesa/drivers/dri/intel/intel_extensions.c index ee5311fd00e..6ccd5b3ba97 100644 --- a/src/mesa/drivers/dri/intel/intel_extensions.c +++ b/src/mesa/drivers/dri/intel/intel_extensions.c @@ -77,7 +77,6 @@ intelInitExtensions(struct gl_context *ctx) ctx->Extensions.ARB_vertex_array_object = true; ctx->Extensions.ARB_vertex_program = true; ctx->Extensions.ARB_vertex_shader = true; - ctx->Extensions.ARB_window_pos = true; ctx->Extensions.EXT_blend_color = true; ctx->Extensions.EXT_blend_equation_separate = true; ctx->Extensions.EXT_blend_func_separate = true;