diff options
author | Timothy Arceri <[email protected]> | 2018-09-02 20:27:40 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-09-08 14:35:09 +1000 |
commit | 14fe9fa11baa4e4e782d192e0b8c150ee9e8754f (patch) | |
tree | be92b36f8c524f67a50ef5c1899bd0dacf1c86cb /src/mesa | |
parent | 21ca322e637291b89a445159fc45b8dbf638e6c9 (diff) |
mesa: enable ARB_vertex_buffer_object in core profile
This extension is required by "Wolfenstein: The Old Blood"
and is exposed in core in the Nvidia binary driver.
All the functions are just alias of the core functions so
there should be nothing more to do.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/extensions_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index 3c8f126c368..486d76a0580 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -182,7 +182,7 @@ EXT(ARB_vertex_array_bgra , EXT_vertex_array_bgra EXT(ARB_vertex_array_object , dummy_true , GLL, GLC, x , x , 2006) EXT(ARB_vertex_attrib_64bit , ARB_vertex_attrib_64bit , 32, GLC, x , x , 2010) EXT(ARB_vertex_attrib_binding , dummy_true , GLL, GLC, x , x , 2012) -EXT(ARB_vertex_buffer_object , dummy_true , GLL, x , x , x , 2003) +EXT(ARB_vertex_buffer_object , dummy_true , GLL, GLC, x , x , 2003) EXT(ARB_vertex_program , ARB_vertex_program , GLL, x , x , x , 2002) EXT(ARB_vertex_shader , ARB_vertex_shader , GLL, GLC, x , x , 2002) EXT(ARB_vertex_type_10f_11f_11f_rev , ARB_vertex_type_10f_11f_11f_rev , GLL, GLC, x , x , 2013) |