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