From 58a8d318ac7ea970fe0f1ecae13eac6151dce7f9 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Fri, 27 Sep 2013 11:18:54 +0200 Subject: [PATCH] Normalized whitespace (spaces -> tabs) --- src/SDL2.cs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 395b37f..5a90947 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -905,19 +905,19 @@ namespace SDL2 SDL_GL_CONTEXT_PROFILE_ES = 0x0004 } - /// - /// This enumeration is used in conjunction with SDL_GL_SetAttribute - /// and SDL_GL_CONTEXT_FLAGS. Multiple flags can be OR'd together. - /// - [Flags] - public enum SDL_GLcontext - { - SDL_GL_CONTEXT_DEBUG_FLAG = 0x0001, - SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG = 0x0002, - SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG = 0x0004, - SDL_GL_CONTEXT_RESET_ISOLATION_FLAG = 0x0008 - } - + /// + /// This enumeration is used in conjunction with SDL_GL_SetAttribute + /// and SDL_GL_CONTEXT_FLAGS. Multiple flags can be OR'd together. + /// + [Flags] + public enum SDL_GLcontext + { + SDL_GL_CONTEXT_DEBUG_FLAG = 0x0001, + SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG = 0x0002, + SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG = 0x0004, + SDL_GL_CONTEXT_RESET_ISOLATION_FLAG = 0x0008 + } + /// /// An enumeration of window events. ///