mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
18 lines
441 B
C#
18 lines
441 B
C#
namespace NvAPIWrapper.Native.Display
|
|
{
|
|
/// <summary>
|
|
/// Holds a list of possible warping vertex formats
|
|
/// </summary>
|
|
public enum WarpingVerticeFormat : uint
|
|
{
|
|
/// <summary>
|
|
/// XYUVRQ Triangle Strip vertex format
|
|
/// </summary>
|
|
TriangleStripXYUVRQ = 0,
|
|
|
|
/// <summary>
|
|
/// XYUVRQ Triangles format
|
|
/// </summary>
|
|
TrianglesXYUVRQ = 1
|
|
}
|
|
} |