From d6600f9d390f2d37e2f680376d559e5d547c80eb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 28 Oct 2012 15:44:53 +0100 Subject: [PATCH] mesa: remove NV_read_buffer extension enable flag It's been enabled by default, so the flag isn't really useful. Reviewed-by: Kenneth Graunke --- src/mesa/main/get.c | 2 +- src/mesa/main/mtypes.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index d99664ff37f..c34d873f26d 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -357,7 +357,7 @@ extra_ARB_vertex_program_api_es2[] = { * GLES2 if the NV_read_buffer extension is available. */ static const int extra_NV_read_buffer_api_gl[] = { - EXT(NV_read_buffer), + EXTRA_API_ES2, EXTRA_API_GL, EXTRA_END }; diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 09579a4494f..c8f2ca325cb 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3049,7 +3049,6 @@ struct gl_extensions GLboolean NV_fragment_program_option; GLboolean NV_point_sprite; GLboolean NV_primitive_restart; - GLboolean NV_read_buffer; GLboolean NV_texture_barrier; GLboolean NV_texture_env_combine4; GLboolean NV_texture_rectangle; -- 2.30.2