2020-12-07 09:30:09 +00:00
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
|
|
|
|
namespace Kav
|
|
|
|
{
|
|
|
|
public static class VertexDeclarations
|
|
|
|
{
|
|
|
|
public static VertexDeclaration GBufferInstanceDeclaration = new VertexDeclaration
|
|
|
|
(
|
2020-12-07 21:50:32 +00:00
|
|
|
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)
|
2020-12-07 09:30:09 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|