diff options
author | Adam Jackson <[email protected]> | 2017-09-21 15:59:54 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2017-09-22 21:13:45 -0400 |
commit | 52ed3bca91ff13217378196d6800ca7113641a63 (patch) | |
tree | a51e0b22ea1c2528ed9e10561d15ecece4dfc0ab /src/glx/glxextensions.h | |
parent | 3f7093bed2d2c5796345544f24432f33525c7807 (diff) |
glx: Sort the GLX extension bit enum and table
Not quite asciibetical: ARB, then EXT, then vendor, just like the GL
extension enum just below. No functional change, but it bothered me.
Signed-off-by: Adam Jackson <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glx/glxextensions.h')
-rw-r--r-- | src/glx/glxextensions.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/glx/glxextensions.h b/src/glx/glxextensions.h index ff35dedd0b2..6225742da51 100644 --- a/src/glx/glxextensions.h +++ b/src/glx/glxextensions.h @@ -43,14 +43,17 @@ enum ARB_fbconfig_float_bit, ARB_get_proc_address_bit, ARB_multisample_bit, - ATI_pixel_format_float_bit, + EXT_buffer_age_bit, + EXT_create_context_es2_profile_bit, + EXT_create_context_es_profile_bit, + EXT_fbconfig_packed_float_bit, + EXT_framebuffer_sRGB_bit, + EXT_import_context_bit, + EXT_texture_from_pixmap_bit, EXT_visual_info_bit, EXT_visual_rating_bit, - EXT_import_context_bit, - EXT_framebuffer_sRGB_bit, - EXT_fbconfig_packed_float_bit, - EXT_create_context_es_profile_bit, - EXT_create_context_es2_profile_bit, + ATI_pixel_format_float_bit, + INTEL_swap_event_bit, MESA_copy_sub_buffer_bit, MESA_depth_float_bit, MESA_multithread_makecurrent_bit, @@ -60,18 +63,15 @@ enum NV_float_buffer_bit, OML_swap_method_bit, OML_sync_control_bit, - SGI_make_current_read_bit, - SGI_swap_control_bit, - SGI_video_sync_bit, SGIS_multisample_bit, SGIX_fbconfig_bit, SGIX_pbuffer_bit, SGIX_swap_barrier_bit, SGIX_swap_group_bit, SGIX_visual_select_group_bit, - EXT_texture_from_pixmap_bit, - INTEL_swap_event_bit, - EXT_buffer_age_bit, + SGI_make_current_read_bit, + SGI_swap_control_bit, + SGI_video_sync_bit, }; /* From the GLX perspective, the ARB and EXT extensions are identical. Use a |