orca/sketches/triangleMetal/vertex.h

18 lines
275 B
C
Raw Normal View History

2022-12-26 17:33:31 +00:00
#ifndef __VERTEX_H__
#define __VERTEX_H__
#include<simd/simd.h>
typedef struct
{
vector_float2 pos;
vector_float4 col;
} my_vertex;
typedef enum { vertexInputIndexVertices = 0,
vertexInputIndexViewportSize = 1 } vertexInputIndex;
#endif //__VERTEX_H__