// // WindowHintContextApi.cs // // Copyright (C) 2019 OpenTK // // This software may be modified and distributed under the terms // of the MIT license. See the LICENSE file for details. // namespace OpenToolkit.GraphicsLibraryFramework { /// /// Used to specify the context creation API. /// /// public enum WindowHintContextApi { /// /// Indicates the context creation API used to create the window's context; /// either or . /// ContextCreationApi = 0x0002200B, } }