From 690fe77835f8684cf32d4688f30d2beb1d7dbfc5 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 4 Apr 2017 13:21:25 -0600 Subject: [PATCH] st/wgl: sort strings in stw_extension_string[] array Trivial. --- src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c b/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c index 996eb58..904ac15 100644 --- a/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c +++ b/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c @@ -38,15 +38,15 @@ static const char *stw_extension_string = "WGL_ARB_create_context " "WGL_ARB_create_context_profile " "WGL_ARB_extensions_string " + "WGL_ARB_make_current_read " "WGL_ARB_multisample " "WGL_ARB_pbuffer " "WGL_ARB_pixel_format " "WGL_ARB_render_texture " "WGL_EXT_create_context_es_profile " "WGL_EXT_create_context_es2_profile " - "WGL_ARB_make_current_read " - "WGL_EXT_swap_control " - "WGL_EXT_extensions_string"; + "WGL_EXT_extensions_string " + "WGL_EXT_swap_control"; WINGDIAPI const char * APIENTRY -- 2.7.4