16 lines
617 B
C#
16 lines
617 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace Kav
|
|
{
|
|
public static class VertexDeclarations
|
|
{
|
|
public static VertexDeclaration GBufferInstanceDeclaration = new VertexDeclaration
|
|
(
|
|
new VertexElement(0, VertexElementFormat.HalfVector4, VertexElementUsage.Color, 0),
|
|
new VertexElement(16, VertexElementFormat.HalfVector4, VertexElementUsage.Color, 1),
|
|
new VertexElement(32, VertexElementFormat.HalfVector4, VertexElementUsage.Color, 2),
|
|
new VertexElement(48, VertexElementFormat.HalfVector4, VertexElementUsage.Color, 3)
|
|
);
|
|
}
|
|
}
|