//---------------------------------------------------------------------------------------------------------------------------------------------------
//
// Copyright (C)2007 DarkWynter Studios. All rights reserved.
//
//---------------------------------------------------------------------------------------------------------------------------------------------------
// {Contact : darkwynter.com for licensing information
//---------------------------------------------------------------------------------------------------------------------------------------------------
namespace DarkWynter.Stream
{
#region Using Statements
#endregion
///
/// Class containing all Stream-based Enums_Engine.
/// Enums are int32 by default.
/// We override enum "name" : byte for memory optimization
///
public static class Enums_Stream
{
///
/// Tells GpuProcessor how to execute this Variable
///
public enum GpuProcessorMode : byte
{
///
/// Indexed pass
///
Indexed,
///
/// Spatial pass
///
Spatial
};
}
}