#ifndef __VERTEX_H__ #define __VERTEX_H__ #include typedef struct { vector_float2 pos; vector_float4 col; } my_vertex; typedef enum { vertexInputIndexVertices = 0, vertexInputIndexViewportSize = 1 } vertexInputIndex; #endif //__VERTEX_H__