aboutsummaryrefslogtreecommitdiffstats
path: root/vertex.h
blob: 7f58ee9a56998f0de9d209c73e4e7648b839006e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
 * SPDX-License-Identifier: MIT
 */
#ifndef VERTEX_H
#define VERTEX_H

#include "linmath.h"

struct vertex {
	vec3 pos;
	vec3 norm;
	vec2 uv;
};

#endif // VERTEX_H