blob: 6a79dde0c18b9873e2adef1d45fa27fc1308c61e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef VERTEX_H
#define VERTEX_H
#include <GL/glew.h>
#include "../math/vector.h"
typedef struct
{
Vec3 position;
Vec2 texCoord;
Vec3 normal;
Vec3 tangent;
} vertex_t;
#endif // VERTEX_H
|