X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fsrc%2Fanbox%2Fgraphics%2Fprimitives.h;fp=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fsrc%2Fanbox%2Fgraphics%2Fprimitives.h;h=de7191a278cdc93235d7ff64063b18662b8db1c2;hb=e26c1ec581be598521517829adba8c8dd23a768f;hp=0000000000000000000000000000000000000000;hpb=6699c1aea74eeb0eb400e6299079f0c7576f716f;p=iec.git diff --git a/src/type3_AndroidCloud/anbox-master/src/anbox/graphics/primitives.h b/src/type3_AndroidCloud/anbox-master/src/anbox/graphics/primitives.h new file mode 100644 index 0000000..de7191a --- /dev/null +++ b/src/type3_AndroidCloud/anbox-master/src/anbox/graphics/primitives.h @@ -0,0 +1,47 @@ +/* + * Copyright © 2014 Canonical Ltd. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program. If not, see . + * + * Authored by: Daniel van Vugt + * Kevin DuBois + */ + +#ifndef ANBOX_GRAPHICS_PRIMITIVES_H_ +#define ANBOX_GRAPHICS_PRIMITIVES_H_ + +#include + +namespace anbox { +namespace graphics { +struct Vertex { + GLfloat position[3]; + GLfloat texcoord[2]; +}; + +struct Primitive { + enum { max_vertices = 4 }; + + Primitive() : type(GL_TRIANGLE_FAN), nvertices(4) { + // Default is a quad. Just need to assign vertices[] and tex_id. + } + + GLenum type; // GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES etc + GLuint tex_id; // GL texture ID (or 0 to represent the surface itself) + int nvertices; + Vertex vertices[max_vertices]; +}; +} // namespace graphics +} // namespace anbox + +#endif