diff options
author | Dave Airlie <[email protected]> | 2016-06-09 06:34:17 +1000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2017-01-20 15:41:23 -0800 |
commit | 839ce21143df5f80bc9bc39bca92f64e721bd540 (patch) | |
tree | a188eeb0e48c90c877b4b39f5f59012b63cacb65 /src | |
parent | 150f2fa78999ff20a9e21e58b72ae31b7cd845b8 (diff) |
mesa: Add ARB_gpu_shader_int64 extension bits
This just adds the usual boilerplate in mesa core.
Signed-off-by: Dave Airlie <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src')
-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 2de3c598448..91918c253e3 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -74,6 +74,7 @@ EXT(ARB_get_program_binary , dummy_true EXT(ARB_get_texture_sub_image , dummy_true , GLL, GLC, x , x , 2014) EXT(ARB_gpu_shader5 , ARB_gpu_shader5 , x , GLC, x , x , 2010) EXT(ARB_gpu_shader_fp64 , ARB_gpu_shader_fp64 , x , GLC, x , x , 2010) +EXT(ARB_gpu_shader_int64 , ARB_gpu_shader_int64 , x , GLC, x , x , 2015) EXT(ARB_half_float_pixel , dummy_true , GLL, GLC, x , x , 2003) EXT(ARB_half_float_vertex , ARB_half_float_vertex , GLL, GLC, x , x , 2008) EXT(ARB_indirect_parameters , ARB_indirect_parameters , x , GLC, x , x , 2013) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index f04ec51d52c..7784d2548d2 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3844,6 +3844,7 @@ struct gl_extensions GLboolean ARB_explicit_uniform_location; GLboolean ARB_gpu_shader5; GLboolean ARB_gpu_shader_fp64; + GLboolean ARB_gpu_shader_int64; GLboolean ARB_half_float_vertex; GLboolean ARB_indirect_parameters; GLboolean ARB_instanced_arrays; |