- implement VKBuffer::Resize

This commit is contained in:
Magnus Norddahl 2019-04-18 22:01:42 +02:00
commit faac0805f0
12 changed files with 49 additions and 18 deletions

View file

@ -339,7 +339,7 @@ IIndexBuffer *OpenGLFrameBuffer::CreateIndexBuffer()
return new GLIndexBuffer;
}
IDataBuffer *OpenGLFrameBuffer::CreateDataBuffer(int bindingpoint, bool ssbo)
IDataBuffer *OpenGLFrameBuffer::CreateDataBuffer(int bindingpoint, bool ssbo, bool needsresize)
{
return new GLDataBuffer(bindingpoint, ssbo);
}