You.i Engine
YiVertexData.h
Go to the documentation of this file.
1 // © You i Labs Inc. 2000-2017. All rights reserved.
2 #ifndef _YI_VERTEX_DATA_H_
3 #define _YI_VERTEX_DATA_H_
4 
5 #include "framework/YiPredef.h"
6 
7 #include <glm/vec2.hpp>
8 #include <glm/vec3.hpp>
9 
15 static const uint32_t YiPositionElementsPerVertex = 3;
16 static const uint32_t YiUVElementsPerVertex = 2;
17 
19 {
20  glm::vec3 position;
21  glm::vec2 texcoord;
22 };
23 
26 #endif // _YI_VERTEX_DATA_H_
Definition: YiVertexData.h:18
glm::vec2 texcoord
Definition: YiVertexData.h:21
glm::vec3 position
Definition: YiVertexData.h:20