//
// ClientApi.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
{
///
/// The context client APIs.
///
///
public enum ClientApi
{
///
/// No context API is created.
///
NoApi = 0,
///
/// OpenGL context is created.
///
OpenGlApi = 0x00030001,
///
/// OpenGL ES context is created.
///
OpenGlEsApi = 0x00030002
}
}