//
// ContextApi.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 API used to create the window context.
///
public enum ContextApi
{
///
/// Uses the native context API to create the window context.
///
NativeContextApi = 0x00036001,
///
/// Uses Egl to create the window context.
///
EglContextApi = 0x00036002
}
}