Home
last modified time | relevance | path

Searched refs:priorScope (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.cpp20 : priorScope(currentScope().get()), in BackendScope()
24 if (priorScope) { in BackendScope()
25 assert(priorScope->nextScope == nullptr); in BackendScope()
26 priorScope->nextScope = this; in BackendScope()
27 priorScope->deactivate(); in BackendScope()
39 if (priorScope) { in ~BackendScope()
40 priorScope->activate(); in ~BackendScope()
41 currentScope().set(priorScope); in ~BackendScope()
42 assert(priorScope->nextScope == this); in ~BackendScope()
43 priorScope->nextScope = nullptr; in ~BackendScope()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/renderer/
H A Dbackend_scope.hpp28 BackendScope* priorScope; member in mbgl::BackendScope