diff options
Diffstat (limited to 'test/gl/object.test.cpp')
-rw-r--r-- | test/gl/object.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gl/object.test.cpp b/test/gl/object.test.cpp index f1da93f1da..85ae457081 100644 --- a/test/gl/object.test.cpp +++ b/test/gl/object.test.cpp @@ -1,5 +1,6 @@ #include <mbgl/test/util.hpp> +#include <mbgl/map/backend_scope.hpp> #include <mbgl/gl/headless_backend.hpp> #include <mbgl/gl/offscreen_view.hpp> @@ -62,6 +63,7 @@ TEST(GLObject, Value) { TEST(GLObject, Store) { HeadlessBackend backend { test::sharedDisplay() }; OffscreenView view(backend.getContext()); + BackendScope scope { backend }; gl::Context context; EXPECT_TRUE(context.empty()); @@ -77,6 +79,4 @@ TEST(GLObject, Store) { context.reset(); EXPECT_TRUE(context.empty()); - - backend.deactivate(); } |