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); }