TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / graphics / primitives.h
1 /*
2  * Copyright © 2014 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License version 3,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Daniel van Vugt <daniel.van.vugt@canonical.com>
17  *              Kevin DuBois <kevin.dubois@canonical.com>
18  */
19
20 #ifndef ANBOX_GRAPHICS_PRIMITIVES_H_
21 #define ANBOX_GRAPHICS_PRIMITIVES_H_
22
23 #include <GLES2/gl2.h>
24
25 namespace anbox {
26 namespace graphics {
27 struct Vertex {
28   GLfloat position[3];
29   GLfloat texcoord[2];
30 };
31
32 struct Primitive {
33   enum { max_vertices = 4 };
34
35   Primitive() : type(GL_TRIANGLE_FAN), nvertices(4) {
36     // Default is a quad. Just need to assign vertices[] and tex_id.
37   }
38
39   GLenum type;    // GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES etc
40   GLuint tex_id;  // GL texture ID (or 0 to represent the surface itself)
41   int nvertices;
42   Vertex vertices[max_vertices];
43 };
44 }  // namespace graphics
45 }  // namespace anbox
46
47 #endif