gearlib/include/vertex.h

19 lines
273 B
C
Raw Normal View History

2024-05-03 11:18:50 +12:00
#ifndef __VERTEX_H__
#define __VERTEX_H__
#include <stddef.h>
typedef struct VertexAttrib {
int type;
size_t size;
int count;
} VertexAttrib;
typedef struct VertexLayout {
VertexAttrib* data;
size_t size;
size_t capacity;
} VertexLayout;
#endif