diff options
author | Marek Olšák <[email protected]> | 2019-11-06 18:08:22 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-11-07 16:04:30 -0500 |
commit | 0b3111ed84b0ad65caf99989acb793e08338906a (patch) | |
tree | a47fa4525d6bacfe2dc3d4d3f4e556977dd3f1c0 | |
parent | 299c55df8846b9462570cc8fdd3f1933bfa5e2b0 (diff) |
mesa: expose SPIR-V extensions in the Compatibility profile too
We would like to have GL 4.6 Compatibility too.
The extensions don't support compatibility features, so no other changes
are needed.
Reviewed-by: Alejandro Piñeiro <[email protected]>
-rw-r--r-- | src/mesa/main/extensions_table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index 9b056c513a2..d494f4d582c 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -81,7 +81,7 @@ EXT(ARB_framebuffer_object , ARB_framebuffer_object EXT(ARB_framebuffer_sRGB , EXT_framebuffer_sRGB , GLL, GLC, x , x , 1998) EXT(ARB_get_program_binary , dummy_true , GLL, GLC, x , x , 2010) EXT(ARB_get_texture_sub_image , dummy_true , GLL, GLC, x , x , 2014) -EXT(ARB_gl_spirv , ARB_gl_spirv , x, GLC, x , x , 2016) +EXT(ARB_gl_spirv , ARB_gl_spirv , GLL, GLC, x , x , 2016) EXT(ARB_gpu_shader5 , ARB_gpu_shader5 , GLL, GLC, x , x , 2010) EXT(ARB_gpu_shader_fp64 , ARB_gpu_shader_fp64 , 32, GLC, x , x , 2010) EXT(ARB_gpu_shader_int64 , ARB_gpu_shader_int64 , 40, GLC, x , x , 2015) @@ -140,7 +140,7 @@ EXT(ARB_shading_language_420pack , ARB_shading_language_420pack EXT(ARB_shading_language_packing , ARB_shading_language_packing , GLL, GLC, x , x , 2011) EXT(ARB_shadow , ARB_shadow , GLL, x , x , x , 2001) EXT(ARB_sparse_buffer , ARB_sparse_buffer , GLL, GLC, x , x , 2014) -EXT(ARB_spirv_extensions , ARB_spirv_extensions , x, GLC, x , x , 2016) +EXT(ARB_spirv_extensions , ARB_spirv_extensions , GLL, GLC, x , x , 2016) EXT(ARB_stencil_texturing , ARB_stencil_texturing , GLL, GLC, x , x , 2012) EXT(ARB_sync , ARB_sync , GLL, GLC, x , x , 2003) EXT(ARB_tessellation_shader , ARB_tessellation_shader , GLL, GLC, x , x , 2009) |