MyGUI 3.4.2
MyGUI_VertexData.h
Go to the documentation of this file.
1/*
2 * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3 * Distributed under the MIT License
4 * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5 */
6
7#ifndef MYGUI_VERTEX_DATA_H_
8#define MYGUI_VERTEX_DATA_H_
9
10#include "MyGUI_Prerequest.h"
11#include "MyGUI_Types.h"
12
13namespace MyGUI
14{
15
16 struct Vertex
17 {
18 void set(float _x, float _y, float _z, float _u, float _v, uint32 _colour)
19 {
20 x = _x;
21 y = _y;
22 z = _z;
23 u = _u;
24 v = _v;
26 }
27
28 float x, y, z;
30 float u, v;
31 };
32
34 {
35 enum Enum
36 {
43 VertexCount = 6
44 };
45
46 void set(float _l, float _t, float _r, float _b, float _z, float _u1, float _v1, float _u2, float _v2, uint32 _colour)
47 {
54 }
55
56 void set(float _x1, float _y1, float _x2, float _y2, float _x3, float _y3, float _x4, float _y4, float _z, float _u1, float _v1, float _u2, float _v2, uint32 _colour)
57 {
64 }
65
67 };
68
69} // namespace MyGUI
70
71#endif // MYGUI_VERTEX_DATA_H_
void set(float _x, float _y, float _z, float _u, float _v, uint32 _colour)
void set(float _x1, float _y1, float _x2, float _y2, float _x3, float _y3, float _x4, float _y4, float _z, float _u1, float _v1, float _u2, float _v2, uint32 _colour)
void set(float _l, float _t, float _r, float _b, float _z, float _u1, float _v1, float _u2, float _v2, uint32 _colour)