Home
last modified time | relevance | path

Searched refs:vertexArray (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Dvertex_array.hpp19 : vertexArray(std::move(vertexArray_)) { in VertexArrayState()
29 UniqueVertexArray vertexArray; member in mbgl::gl::VertexArrayState
H A Dcontext.cpp129 vertexArray = std::make_unique<extension::VertexArray>(fn); in initializeExtensions()
304 vertexArray && in supportsVertexArrays()
305 vertexArray->genVertexArrays && in supportsVertexArrays()
306 vertexArray->bindVertexArray && in supportsVertexArrays()
307 vertexArray->deleteVertexArrays; in supportsVertexArrays()
358 MBGL_CHECK_ERROR(vertexArray->genVertexArrays(1, &id)); in createVertexArray()
790 MBGL_CHECK_ERROR(vertexArray->deleteVertexArrays(int(abandonedVertexArrays.size()), in performCleanup()
H A Dprogram.hpp122 VertexArray& vertexArray, in draw() argument
138 vertexArray.bind(context, in draw()
H A Dvertex_array.cpp9 context.bindVertexArray = state->vertexArray; in bind()
H A Dvalue.cpp345 if (auto vertexArray = context.getVertexArrayExtension()) { in Set() local
346 if (vertexArray->bindVertexArray) { in Set()
347 MBGL_CHECK_ERROR(vertexArray->bindVertexArray(value)); in Set()
H A Dcontext.hpp205 return vertexArray.get(); in getVertexArrayExtension()
216 std::unique_ptr<extension::VertexArray> vertexArray; member in mbgl::gl::Context