[drape] test fixes

This commit is contained in:
ExMix 2014-03-27 17:36:20 +03:00 committed by Alex Zolotarev
parent 29871128cd
commit 7147b87ef6

View file

@ -128,7 +128,9 @@ UNIT_TEST(BatchLists_Test)
.WillOnce(Invoke(&dataCmp, &MemoryComparer::cmp));
// build VertexArrayBuffer
EXPECTGL(glHasExtension("GL_APPLE_vertex_array_object")).WillOnce(Return(true));
EXPECTGL(glHasExtension(_)).WillOnce(Return(true));
EXPECTGL(glHasExtension(_)).WillOnce(Return(true));
EXPECTGL(glHasExtension(_)).WillOnce(Return(true));
EXPECTGL(glGenVertexArray()).WillOnce(Return(VaoID));
EXPECTGL(glBindVertexArray(VaoID));