diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-10-10 15:58:04 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-10-28 17:14:07 -0700 |
commit | 39d5cb325012a5675676c81153c5e95d29fbc357 (patch) | |
tree | 214ad773048a0ae1e0492573ba9bb21716c4d881 /test/gl/object.test.cpp | |
parent | 0e57d10d77e555a9229f7d522d83f87df7d5180d (diff) | |
download | qtlocation-mapboxgl-39d5cb325012a5675676c81153c5e95d29fbc357.tar.gz |
[core] Use VAOs internally
Diffstat (limited to 'test/gl/object.test.cpp')
-rw-r--r-- | test/gl/object.test.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/gl/object.test.cpp b/test/gl/object.test.cpp index a3457d28c6..2a1ee0a1da 100644 --- a/test/gl/object.test.cpp +++ b/test/gl/object.test.cpp @@ -88,13 +88,6 @@ TEST(GLObject, Store) { context.reset(); EXPECT_TRUE(context.empty()); - mbgl::gl::UniqueVertexArray vao = context.createVertexArray(); - EXPECT_NE(vao.get(), 0u); - vao.reset(); - EXPECT_FALSE(context.empty()); - context.performCleanup(); - EXPECT_TRUE(context.empty()); - context.reset(); EXPECT_TRUE(context.empty()); |