diff options
author | Nicolai Hähnle <[email protected]> | 2017-03-30 11:14:01 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-04-05 15:25:40 +0200 |
commit | 4fdb691f109bee26e172b0358b26e7436aee3b23 (patch) | |
tree | 90c8c6647d86e280119bcbea072f3a27c1a32e14 /src/mesa/main | |
parent | 2c4c47dcb7f1414bb15a29736e6d1c90047a392a (diff) |
mesa: add GL_ARB_shader_ballot boilerplate
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main')
-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 6f3b54d2239..d11cb0f150a 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -107,6 +107,7 @@ EXT(ARB_seamless_cubemap_per_texture , AMD_seamless_cubemap_per_texture EXT(ARB_separate_shader_objects , dummy_true , GLL, GLC, x , x , 2010) EXT(ARB_shader_atomic_counter_ops , ARB_shader_atomic_counter_ops , GLL, GLC, x , x , 2015) EXT(ARB_shader_atomic_counters , ARB_shader_atomic_counters , GLL, GLC, x , x , 2011) +EXT(ARB_shader_ballot , ARB_shader_ballot , GLL, GLC, x , x , 2015) EXT(ARB_shader_bit_encoding , ARB_shader_bit_encoding , GLL, GLC, x , x , 2010) EXT(ARB_shader_clock , ARB_shader_clock , GLL, GLC, x , x , 2015) EXT(ARB_shader_draw_parameters , ARB_shader_draw_parameters , GLL, GLC, x , x , 2013) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index e2ef6fd61b4..d0fb6c7c26c 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3892,6 +3892,7 @@ struct gl_extensions GLboolean ARB_seamless_cube_map; GLboolean ARB_shader_atomic_counter_ops; GLboolean ARB_shader_atomic_counters; + GLboolean ARB_shader_ballot; GLboolean ARB_shader_bit_encoding; GLboolean ARB_shader_clock; GLboolean ARB_shader_draw_parameters; |