diff options
author | Nanley Chery <[email protected]> | 2016-05-24 14:27:26 -0700 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-06-10 12:26:10 +0100 |
commit | 669836e1be16c6d671897acf3fac58c4774d2302 (patch) | |
tree | c561d7e7cfa4c90fdfc45442427eb172dc14507d /src/mesa | |
parent | 1dce03e4c12a54a73444d9d8e7283c00db217108 (diff) |
mesa/extensions: Fix ES1 extension reporting
Commit eda15abd84af575d3bde432e2163e30d743a7c87 , unintentionally
advertised these extensions in ES1 contexts. Undo this error.
Signed-off-by: Nanley Chery <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Cc: "12.0" <[email protected]>
(cherry picked from commit c06cef7f9b27dcc109c9c6ae69f729acce041072)
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/extensions_table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index b715f7c4f36..7dd025afb8b 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -190,7 +190,7 @@ EXT(EXT_blend_minmax , EXT_blend_minmax EXT(EXT_blend_subtract , dummy_true , GLL, x , x , x , 1995) EXT(EXT_buffer_storage , ARB_buffer_storage , x , x , x , 31, 2015) EXT(EXT_clip_cull_distance , ARB_cull_distance , x , x , x , 30, 2016) -EXT(EXT_color_buffer_float , dummy_true , x , x , ES1, 30, 2013) +EXT(EXT_color_buffer_float , dummy_true , x , x , x , 30, 2013) EXT(EXT_compiled_vertex_array , dummy_true , GLL, x , x , x , 1996) EXT(EXT_copy_image , OES_copy_image , x , x , x , 30, 2014) EXT(EXT_copy_texture , dummy_true , GLL, x , x , x , 1995) @@ -368,7 +368,7 @@ EXT(OES_texture_half_float_linear , OES_texture_half_float_linear EXT(OES_texture_mirrored_repeat , dummy_true , x , x , ES1, x , 2005) EXT(OES_texture_npot , ARB_texture_non_power_of_two , x , x , ES1, ES2, 2005) EXT(OES_texture_stencil8 , ARB_texture_stencil8 , x , x , x , 30, 2014) -EXT(OES_texture_storage_multisample_2d_array, ARB_texture_multisample , x , x , ES1, 31, 2014) +EXT(OES_texture_storage_multisample_2d_array, ARB_texture_multisample , x , x , x , 31, 2014) EXT(OES_vertex_array_object , dummy_true , x , x , ES1, ES2, 2010) EXT(S3_s3tc , ANGLE_texture_compression_dxt , GLL, GLC, x , x , 1999) |