This commit is contained in:
Dario Manesku 2014-02-01 05:40:06 +01:00
parent 7c7f406c9e
commit 7259e94c2f

View file

@ -86,9 +86,9 @@ struct LightType
{ {
enum Enum enum Enum
{ {
SpotLight = 0, SpotLight,
PointLight = 1, PointLight,
DirectionalLight = 2, DirectionalLight,
Count Count
}; };
@ -99,8 +99,8 @@ struct DepthImpl
{ {
enum Enum enum Enum
{ {
InvZ = 0, InvZ,
Linear = 1, Linear,
Count Count
}; };
@ -110,8 +110,8 @@ struct PackDepth
{ {
enum Enum enum Enum
{ {
RGBA = 0, RGBA,
VSM = 1, VSM,
Count Count
}; };
@ -121,10 +121,10 @@ struct SmImpl
{ {
enum Enum enum Enum
{ {
Hard = 0, Hard,
PCF = 1, PCF,
VSM = 2, VSM,
ESM = 3, ESM,
Count Count
}; };
@ -134,9 +134,9 @@ struct SmType
{ {
enum Enum enum Enum
{ {
Single = 0, Single,
Omni = 1, Omni,
Cascade = 2, Cascade,
Count Count
}; };
@ -146,12 +146,12 @@ struct TetrahedronFaces
{ {
enum Enum enum Enum
{ {
Green = 0, Green,
Yellow = 1, Yellow,
Blue = 2, Blue,
Red = 3, Red,
Count = 4 Count
}; };
}; };
@ -159,8 +159,8 @@ struct ProjType
{ {
enum Enum enum Enum
{ {
Horizontal = 0, Horizontal,
Vertical = 1, Vertical,
Count Count
}; };
@ -170,10 +170,10 @@ struct ShadowMapRenderTargets
{ {
enum Enum enum Enum
{ {
First = 0, First,
Second = 1, Second,
Third = 2, Third,
Fourth = 3, Fourth,
Count Count
}; };