summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/vertex_array.cpp
blob: df63bbc4b7c5c51ce3c01a6a77476c309c736295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <mbgl/gl/vertex_array.hpp>

namespace mbgl {
namespace gl {

ExtensionFunction<void(GLuint array)>
    BindVertexArray({ { "GL_ARB_vertex_array_object", "glBindVertexArray" },
                      { "GL_OES_vertex_array_object", "glBindVertexArrayOES" },
                      { "GL_APPLE_vertex_array_object", "glBindVertexArrayAPPLE" } });

ExtensionFunction<void(GLsizei n, const GLuint* arrays)>
    DeleteVertexArrays({ { "GL_ARB_vertex_array_object", "glDeleteVertexArrays" },
                         { "GL_OES_vertex_array_object", "glDeleteVertexArraysOES" },
                         { "GL_APPLE_vertex_array_object", "glDeleteVertexArraysAPPLE" } });

ExtensionFunction<void(GLsizei n, GLuint* arrays)>
    GenVertexArrays({ { "GL_ARB_vertex_array_object", "glGenVertexArrays" },
                      { "GL_OES_vertex_array_object", "glGenVertexArraysOES" },
                      { "GL_APPLE_vertex_array_object", "glGenVertexArraysAPPLE" } });

} // namespace gl
} // namespace mbgl