diff options
author | Timothy Arceri <[email protected]> | 2018-07-04 11:06:41 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-07-05 13:15:34 +1000 |
commit | 0cb6537deecbbb5f330b5835de29f64e4faf61c4 (patch) | |
tree | cea8fc97f3877bdb01a066262b823a5ee78cd270 /src/mesa/main/extensions_table.h | |
parent | 39063334d3e33d3a59760abc856e018cfd4e3583 (diff) |
mesa: enable ARB_direct_state_access in OpenGL 4.5 compat profile
Its unlikely anyone will add proper ARB_direct_state_access compat
support before we branch 18.2. Enabling the extension in 4.5 at
least allows users to make use of MESA_GL_VERSION_OVERRIDE=4.5COMPAT
for games like No Mans Sky.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions_table.h')
-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 8ed1308182e..e24287b8581 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -54,7 +54,7 @@ EXT(ARB_depth_buffer_float , ARB_depth_buffer_float EXT(ARB_depth_clamp , ARB_depth_clamp , GLL, GLC, x , x , 2003) EXT(ARB_depth_texture , ARB_depth_texture , GLL, x , x , x , 2001) EXT(ARB_derivative_control , ARB_derivative_control , GLL, GLC, x , x , 2014) -EXT(ARB_direct_state_access , dummy_true , x , GLC, x , x , 2014) +EXT(ARB_direct_state_access , dummy_true , 45, GLC, x , x , 2014) EXT(ARB_draw_buffers , dummy_true , GLL, GLC, x , x , 2002) EXT(ARB_draw_buffers_blend , ARB_draw_buffers_blend , GLL, GLC, x , x , 2009) EXT(ARB_draw_elements_base_vertex , ARB_draw_elements_base_vertex , GLL, GLC, x , x , 2009) |