Home
last modified time | relevance | path

Searched refs:nextScope (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dbackend_scope.cpp21 nextScope(nullptr), in BackendScope()
25 assert(priorScope->nextScope == nullptr); in BackendScope()
26 priorScope->nextScope = this; in BackendScope()
36 assert(nextScope == nullptr); in ~BackendScope()
42 assert(priorScope->nextScope == this); in ~BackendScope()
43 priorScope->nextScope = nullptr; in ~BackendScope()
52 !(nextScope && this->backend == nextScope->backend)) { in activate()
62 !(nextScope && this->backend == nextScope->backend)) { in deactivate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/renderer/
H A Dbackend_scope.hpp29 BackendScope* nextScope; member in mbgl::BackendScope