diff options
author | Marek Olšák <[email protected]> | 2018-02-14 20:12:51 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-02-23 20:50:15 +0100 |
commit | 605a7f6db51cb946eed508bc9a7adfa753c75e10 (patch) | |
tree | 7921ee566f94e6a1ec40930a90c5cef570d94101 /src/mesa | |
parent | 14a2c87c41946794a4ea4870a160b70c01225c4f (diff) |
mesa: implement ARB_compatibility
Tested-by: Dieter Nützel <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/extensions_table.h | 1 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index f4925ed442b..02c97a242ab 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -40,6 +40,7 @@ EXT(ARB_clear_buffer_object , dummy_true EXT(ARB_clear_texture , ARB_clear_texture , GLL, GLC, x , x , 2013) EXT(ARB_clip_control , ARB_clip_control , GLL, GLC, x , x , 2014) EXT(ARB_color_buffer_float , ARB_color_buffer_float , GLL, GLC, x , x , 2004) +EXT(ARB_compatibility , ARB_compatibility , GLL, x , x , x , 2009) EXT(ARB_compressed_texture_pixel_storage , dummy_true , GLL, GLC, x , x , 2011) EXT(ARB_compute_shader , ARB_compute_shader , GLL, GLC, x , x , 2012) EXT(ARB_compute_variable_group_size , ARB_compute_variable_group_size , GLL, GLC, x , x , 2013) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 15f39cbacc3..62b58cea991 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -4177,6 +4177,7 @@ struct gl_extensions GLboolean ARB_clear_texture; GLboolean ARB_clip_control; GLboolean ARB_color_buffer_float; + GLboolean ARB_compatibility; GLboolean ARB_compute_shader; GLboolean ARB_compute_variable_group_size; GLboolean ARB_conditional_render_inverted; |