summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/index_buffer.hpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] Put ignore in util namespaceJohn Firebaugh2016-11-081-1/+1
|
* [core] Use gl::Program to resolve some rough edges in the GL binding typesJohn Firebaugh2016-11-081-20/+18
| | | | | | | | | * Extract `ignore` util to separate header. * `Segment` now tracks offset and length of indices, rather than primitives. This is more natural. * Introduce `VertexVector` and `IndexVector` types. These types carry information about the intended draw mode (`Triangles`, `LineStrip`, etc.), and ensure that elements are always appended in a group size appropriate for that draw mode, for both indexed and unindexed rendering. * `Program`, rather than `Drawable`, is now the unifying object for draw calls. `Program` is the best place to type check the draw call, because it is typed to carry information about the intended primitive, vertex type, attributes, and uniforms. * Use the debug shaders for debug tile rendering, like gl-js. * Fix the draw mode for background. It was drawing triangle strips with a triangles array. Surprised this didn’t cause issues. Now it’s type checked.
* [core] Modern C++ bindings for OpenGLJohn Firebaugh2016-10-281-4/+5
|
* [core] Refactor BufferJohn Firebaugh2016-10-051-0/+41