// // 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 { /// /// Gamma ramp for a . /// public unsafe struct GammaRamp { /// /// Red components of the gamma ramp. /// public ushort* Red; /// /// Green components of the gamma ramp. /// public ushort* Green; /// /// Blue components of the gamma ramp. /// public ushort* Blue; /// /// Length of the arrays. /// public uint Size; } }