2008-01-31 14:34:13 +00:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Licensed under the MIT/X11 license.
|
|
|
|
|
* Copyright (c) 2006-2008 the OpenTK Team.
|
|
|
|
|
* This notice may not be removed from any source distribution.
|
|
|
|
|
* See license.txt for licensing detailed licensing details.
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Graphics
|
|
|
|
|
{
|
|
|
|
|
/// <summary>Defines the format for graphics operations.</summary>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public class GraphicsMode
|
2008-01-31 14:34:13 +00:00
|
|
|
|
{
|
2008-02-28 13:57:07 +00:00
|
|
|
|
ColorDepth color_format, accumulator_format;
|
|
|
|
|
int depth, stencil, buffers, samples;
|
2008-01-31 14:34:13 +00:00
|
|
|
|
bool stereo;
|
|
|
|
|
|
|
|
|
|
#region --- Constructors ---
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region internal GraphicsFormat(GraphicsFormat mode)
|
|
|
|
|
|
|
|
|
|
/// <internal />
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <summary>Constructs a new GraphicsFormat from the given GraphicsFormat.</summary>
|
|
|
|
|
/// <param name="mode"></param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
internal GraphicsMode(GraphicsMode mode)
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(mode.ColorFormat, mode.Depth, mode.Stencil, mode.Samples, mode.AccumulatorFormat, mode.Buffers, mode.Stereo) { }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region public GraphicsFormat()
|
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with sensible default parameters.</summary>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode()
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(Default)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region public GraphicsFormat(ColorFormat color)
|
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with the specified parameters.</summary>
|
|
|
|
|
/// <param name="color">The ColorFormat of the color buffer.</param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode(ColorDepth color)
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(color, Default.Depth, Default.Stencil, Default.Samples, Default.AccumulatorFormat, Default.Buffers, Default.Stereo)
|
|
|
|
|
{ }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public GraphicsFormat(ColorFormat color, int depth)
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with the specified parameters.</summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="color">The ColorFormat of the color buffer.</param>
|
|
|
|
|
/// <param name="depth">The number of bits in the depth buffer.</param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode(ColorDepth color, int depth)
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(color, depth, Default.Stencil, Default.Samples, Default.AccumulatorFormat, Default.Buffers, Default.Stereo)
|
|
|
|
|
{ }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public GraphicsFormat(ColorFormat color, int depth, int stencil)
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with the specified parameters.</summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="color">The ColorFormat of the color buffer.</param>
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <param name="depth">The number of bits in the depth buffer.</param>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="stencil">The number of bits in the stencil buffer.</param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode(ColorDepth color, int depth, int stencil)
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(color, depth, stencil, Default.Samples, Default.AccumulatorFormat, Default.Buffers, Default.Stereo)
|
|
|
|
|
{ }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public GraphicsFormat(ColorFormat color, int depth, int stencil, int samples)
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with the specified parameters.</summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="color">The ColorFormat of the color buffer.</param>
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <param name="depth">The number of bits in the depth buffer.</param>
|
|
|
|
|
/// <param name="stencil">The number of bits in the stencil buffer.</param>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="samples">The number of samples for FSAA.</param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode(ColorDepth color, int depth, int stencil, int samples)
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(color, depth, stencil, samples, Default.AccumulatorFormat, Default.Buffers, Default.Stereo)
|
|
|
|
|
{ }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public GraphicsFormat(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum)
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with the specified parameters.</summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="color">The ColorFormat of the color buffer.</param>
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <param name="depth">The number of bits in the depth buffer.</param>
|
|
|
|
|
/// <param name="stencil">The number of bits in the stencil buffer.</param>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="samples">The number of samples for FSAA.</param>
|
|
|
|
|
/// <param name="accum">The ColorFormat of the accumilliary buffer.</param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode(ColorDepth color, int depth, int stencil, int samples, ColorDepth accum)
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(color, depth, stencil, samples, accum, Default.Buffers, Default.Stereo)
|
|
|
|
|
{ }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public GraphicsFormat(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers)
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with the specified parameters.</summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="color">The ColorFormat of the color buffer.</param>
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <param name="depth">The number of bits in the depth buffer.</param>
|
|
|
|
|
/// <param name="stencil">The number of bits in the stencil buffer.</param>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="samples">The number of samples for FSAA.</param>
|
|
|
|
|
/// <param name="accum">The ColorFormat of the accumilliary buffer.</param>
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <param name="buffers">The number of render buffers. Typical values include one (single-), two (double-) or three (triple-buffering).</param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode(ColorDepth color, int depth, int stencil, int samples, ColorDepth accum, int buffers)
|
2008-02-28 13:57:07 +00:00
|
|
|
|
: this(color, depth, stencil, samples, accum, buffers, Default.Stereo)
|
|
|
|
|
{ }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public GraphicsFormat(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, bool stereo)
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>Constructs a new GraphicsFormat with the specified parameters.</summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="color">The ColorFormat of the color buffer.</param>
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <param name="depth">The number of bits in the depth buffer.</param>
|
|
|
|
|
/// <param name="stencil">The number of bits in the stencil buffer.</param>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <param name="samples">The number of samples for FSAA.</param>
|
|
|
|
|
/// <param name="accum">The ColorFormat of the accumilliary buffer.</param>
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// <param name="stereo">Set to true for a GraphicsFormat with stereographic capabilities.</param>
|
|
|
|
|
/// <param name="buffers">The number of render buffers. Typical values include one (single-), two (double-) or three (triple-buffering).</param>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public GraphicsMode(ColorDepth color, int depth, int stencil, int samples, ColorDepth accum, int buffers, bool stereo)
|
2008-01-31 14:34:13 +00:00
|
|
|
|
{
|
2008-02-28 13:57:07 +00:00
|
|
|
|
if (depth < 0) throw new ArgumentOutOfRangeException("depth", "Must be greater than, or equal to zero.");
|
|
|
|
|
if (stencil < 0) throw new ArgumentOutOfRangeException("stencil", "Must be greater than, or equal to zero.");
|
|
|
|
|
if (buffers <= 0) throw new ArgumentOutOfRangeException("buffers", "Must be greater than zero.");
|
|
|
|
|
if (samples < 0) throw new ArgumentOutOfRangeException("samples", "Must be greater than, or equal to zero.");
|
|
|
|
|
|
|
|
|
|
this.ColorFormat = color;
|
2008-01-31 14:34:13 +00:00
|
|
|
|
this.Depth = depth;
|
|
|
|
|
this.Stencil = stencil;
|
2008-02-28 13:57:07 +00:00
|
|
|
|
this.AccumulatorFormat = accum;
|
2008-01-31 14:34:13 +00:00
|
|
|
|
this.Buffers = buffers;
|
|
|
|
|
this.Stereo = stereo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region --- Public Methods ---
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public int ColorFormat
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// Gets an OpenTK.Graphics.ColorFormat that describes the color format for this GraphicsFormat.
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// </summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
public ColorDepth ColorFormat
|
2008-01-31 14:34:13 +00:00
|
|
|
|
{
|
|
|
|
|
get { return color_format; }
|
|
|
|
|
private set { color_format = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public int AccumulatorFormat
|
2008-01-31 14:34:13 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// Gets an OpenTK.Graphics.ColorFormat that describes the accumulator format for this GraphicsFormat.
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// </summary>
|
2008-02-28 13:57:07 +00:00
|
|
|
|
public ColorDepth AccumulatorFormat
|
2008-01-31 14:34:13 +00:00
|
|
|
|
{
|
2008-02-28 13:57:07 +00:00
|
|
|
|
get { return accumulator_format; }
|
|
|
|
|
private set { accumulator_format = value; }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region public int Depth
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a System.Int32 that contains the bits per pixel for the depth buffer
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// for this GraphicsFormat.
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public int Depth
|
|
|
|
|
{
|
|
|
|
|
get { return depth; }
|
|
|
|
|
private set { depth = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region public int Stencil
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a System.Int32 that contains the bits per pixel for the stencil buffer
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// of this GraphicsFormat.
|
2008-01-31 14:34:13 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public int Stencil
|
|
|
|
|
{
|
|
|
|
|
get { return stencil; }
|
|
|
|
|
private set { stencil = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a System.Int32 that contains the number of FSAA samples per pixel for this GraphicsFormat.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Samples
|
|
|
|
|
{
|
|
|
|
|
get { return samples; }
|
|
|
|
|
private set { samples = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-31 14:34:13 +00:00
|
|
|
|
#region public bool Stereo
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a System.Boolean indicating whether this DisplayMode is stereoscopic.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool Stereo
|
|
|
|
|
{
|
|
|
|
|
get { return this.stereo; }
|
|
|
|
|
private set { this.stereo = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region public int Buffers
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a System.Int32 containing the number of buffers associated with this
|
|
|
|
|
/// DisplayMode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Buffers
|
|
|
|
|
{
|
|
|
|
|
get { return this.buffers; }
|
|
|
|
|
private set { this.buffers = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region public static GraphicsFormat Default
|
|
|
|
|
|
|
|
|
|
/// <summary>Returns an OpenTK.GraphicsFormat compatible with the underlying platform.</summary>
|
2008-02-28 15:26:13 +00:00
|
|
|
|
public static GraphicsMode Default
|
2008-01-31 14:34:13 +00:00
|
|
|
|
{
|
2008-02-28 15:26:13 +00:00
|
|
|
|
get { return new GraphicsMode(DisplayDevice.PrimaryDisplay.BitsPerPixel, 16, 0, 0, 0, 2, false); }
|
2008-01-31 14:34:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#endregion
|
2008-02-28 13:57:07 +00:00
|
|
|
|
|
|
|
|
|
#region --- Overrides ---
|
|
|
|
|
|
|
|
|
|
/// <summary>Returns a System.String describing the current GraphicsFormat.</summary>
|
|
|
|
|
/// <returns>! System.String describing the current GraphicsFormat.</returns>
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return String.Format("Color: {0}, Depth: {1}, Stencil: {2}, Samples: {3}, Accum: {4}, Buffers: {5}, Stereo: {6}",
|
|
|
|
|
ColorFormat, Depth, Stereo, Samples, AccumulatorFormat, Buffers, Stereo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2008-01-31 14:34:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|