summaryrefslogtreecommitdiff
path: root/src/static-cube.hpp
blob: 77ff439b32228d6d24d4b2b1e2afdc86106690f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PKE_STATIC_CUBE_HPP
#define PKE_STATIC_CUBE_HPP

#include <glm/ext/vector_float3.hpp>
#include <glm/ext/vector_float2.hpp>

struct IntrinsicShapeCube {
	glm::vec3 vert[8];
	glm::vec3 norm[8];
	glm::vec2 uv[8];
	uint16_t index[36];
};

extern IntrinsicShapeCube pkeIntrinsicsCube;

#endif /* PKE_STATIC_CUBE_HPP */