GPU: Update Vulkan backend with latest API changes.

UniformBuf::bind_as_ssbo has been introduced.
This commit is contained in:
Jeroen Bakker 2022-11-15 16:23:18 +01:00
parent 4fb02d7f8e
commit 277b2fcbfa
2 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,10 @@ void VKUniformBuffer::bind(int /*slot*/)
{
}
void VKUniformBuffer::bind_as_ssbo(int /*slot*/)
{
}
void VKUniformBuffer::unbind()
{
}

View File

@ -19,6 +19,7 @@ class VKUniformBuffer : public UniformBuf {
void update(const void *data) override;
void bind(int slot) override;
void bind_as_ssbo(int slot) override;
void unbind() override;
};