diff options
author | Marek Olšák <[email protected]> | 2012-10-28 15:44:53 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-10-31 02:05:12 +0100 |
commit | d6600f9d390f2d37e2f680376d559e5d547c80eb (patch) | |
tree | e4676a5d51330fde81c0bb4aa995aa587062debe /src | |
parent | b8380e54b8567ee2b94102229c69f79e20176587 (diff) |
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 <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/get.c | 2 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
2 files changed, 1 insertions, 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; |