MoonWorksComputeSpriteBatch/src/CameraUniforms.cs

12 lines
237 B
C#

using System.Runtime.InteropServices;
using MoonWorks.Math;
namespace MoonWorksComputeSpriteBatch
{
[StructLayout(LayoutKind.Sequential)]
public struct CameraUniforms
{
public Matrix4x4 viewProjectionMatrix;
}
}