mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-03-04 15:40:00 +00:00
Normalized whitespace (spaces -> tabs)
This commit is contained in:
parent
95f0f58b84
commit
58a8d318ac
26
src/SDL2.cs
26
src/SDL2.cs
|
@ -905,19 +905,19 @@ namespace SDL2
|
||||||
SDL_GL_CONTEXT_PROFILE_ES = 0x0004
|
SDL_GL_CONTEXT_PROFILE_ES = 0x0004
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This enumeration is used in conjunction with SDL_GL_SetAttribute
|
/// This enumeration is used in conjunction with SDL_GL_SetAttribute
|
||||||
/// and SDL_GL_CONTEXT_FLAGS. Multiple flags can be OR'd together.
|
/// and SDL_GL_CONTEXT_FLAGS. Multiple flags can be OR'd together.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum SDL_GLcontext
|
public enum SDL_GLcontext
|
||||||
{
|
{
|
||||||
SDL_GL_CONTEXT_DEBUG_FLAG = 0x0001,
|
SDL_GL_CONTEXT_DEBUG_FLAG = 0x0001,
|
||||||
SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG = 0x0002,
|
SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG = 0x0002,
|
||||||
SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG = 0x0004,
|
SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG = 0x0004,
|
||||||
SDL_GL_CONTEXT_RESET_ISOLATION_FLAG = 0x0008
|
SDL_GL_CONTEXT_RESET_ISOLATION_FLAG = 0x0008
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An enumeration of window events.
|
/// An enumeration of window events.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in a new issue