From ba98816ffce54f04509bb40e6ff99ecf82e4c0b5 Mon Sep 17 00:00:00 2001 From: ExMix Date: Mon, 7 Apr 2014 13:52:19 +0300 Subject: [PATCH] [drape] on update Index buffer we must bind it as current --- drape/gpu_buffer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/drape/gpu_buffer.cpp b/drape/gpu_buffer.cpp index 8d7f0c6e0f..b397874089 100644 --- a/drape/gpu_buffer.cpp +++ b/drape/gpu_buffer.cpp @@ -43,5 +43,6 @@ void GPUBuffer::Bind() void GPUBuffer::Resize(uint16_t elementCount) { base_t::Resize(elementCount); + Bind(); GLFunctions::glBufferData(glTarget(m_t), GetCapacity() * GetElementSize(), NULL, GLConst::GLStaticDraw); }