namespace SM.OGL { public class GLSettings { public static bool InfoEveryUniform = false; /// /// Get/Sets the forced version for OpenGL. /// Needs to be set before init a window. /// public static Version ForcedVersion { get; set; } = new Version(); public static bool ShaderPreProcessing { get; set; } = false; } }