GL_STATIC_DRAW means that the buffer will be created once, set once, and used once, but its created once, updated a lot, and used a lot, what means it should use GL_DYNAMIC_DRAW (this param affects how glBufferSubData later works). Signed-off-by: Tomas Slusny <slusnucky@gmail.com>