mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Use GLFW instead of OpenTK windows * Seems to work pretty well now. * Fix stackalloc issue on Framework. * Add GLFW project to sln. * Fix package downgrade. * Fix SLN more. * Please work. * Fix C# version error.
38 lines
834 B
C#
38 lines
834 B
C#
//
|
|
// GammaRamp.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
|
|
{
|
|
/// <summary>
|
|
/// Gamma ramp for a <see cref="Monitor"/>.
|
|
/// </summary>
|
|
public unsafe struct GammaRamp
|
|
{
|
|
/// <summary>
|
|
/// Red components of the gamma ramp.
|
|
/// </summary>
|
|
public ushort* Red;
|
|
|
|
/// <summary>
|
|
/// Green components of the gamma ramp.
|
|
/// </summary>
|
|
public ushort* Green;
|
|
|
|
/// <summary>
|
|
/// Blue components of the gamma ramp.
|
|
/// </summary>
|
|
public ushort* Blue;
|
|
|
|
/// <summary>
|
|
/// Length of the arrays.
|
|
/// </summary>
|
|
public uint Size;
|
|
}
|
|
}
|