diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2016-09-29 12:15:36 +0200 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-09-29 10:17:47 -0700 |
commit | 15aece8a30dcc1f1f97e28180edda46d05641a2d (patch) | |
tree | 51284a75c6aa16614192988641ce71f59c794dd8 /test | |
parent | d1a84d9b51a7145f9f7665805cf71050aac7bc63 (diff) | |
download | qtlocation-mapboxgl-15aece8a30dcc1f1f97e28180edda46d05641a2d.tar.gz |
[core] introduces types for GL objects
Diffstat (limited to 'test')
-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 ba3580080b..0502bbc847 100644 --- a/test/gl/object.test.cpp +++ b/test/gl/object.test.cpp @@ -80,7 +80,7 @@ TEST(GLObject, Store) { context.performCleanup(); EXPECT_TRUE(context.empty()); - mbgl::gl::UniqueShader shader = context.createShader(GL_VERTEX_SHADER); + mbgl::gl::UniqueShader shader = context.createVertexShader(); EXPECT_NE(shader.get(), 0u); shader.reset(); EXPECT_FALSE(context.empty()); |