diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2016-09-29 11:45:28 +0200 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-09-29 10:17:47 -0700 |
commit | d1a84d9b51a7145f9f7665805cf71050aac7bc63 (patch) | |
tree | 057b048f24e022a2c391a1ecf736c4c9a3f10943 /test/gl | |
parent | 2b05776f978c7759824bce1c4fc89d67cc00d332 (diff) | |
download | qtlocation-mapboxgl-d1a84d9b51a7145f9f7665805cf71050aac7bc63.tar.gz |
[core] rename VAO => VertexArray, FBO => Framebuffer
Diffstat (limited to 'test/gl')
-rw-r--r-- | test/gl/object.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gl/object.test.cpp b/test/gl/object.test.cpp index 2722669e84..ba3580080b 100644 --- a/test/gl/object.test.cpp +++ b/test/gl/object.test.cpp @@ -103,7 +103,7 @@ TEST(GLObject, Store) { context.reset(); EXPECT_TRUE(context.empty()); - mbgl::gl::UniqueVAO vao = context.createVAO(); + mbgl::gl::UniqueVertexArray vao = context.createVertexArray(); EXPECT_NE(vao.get(), 0u); vao.reset(); EXPECT_FALSE(context.empty()); |