Cleanup: Remove unused method

Pull Request: https://projects.blender.org/blender/blender/pulls/147038
This commit is contained in:
Jeroen Bakker
2025-09-30 12:53:56 +02:00
parent 1d596082ce
commit 918edbcb4c
2 changed files with 0 additions and 11 deletions

View File

@@ -110,15 +110,6 @@ void VKStateManager::uniform_buffer_unbind_all()
is_dirty = true;
}
void VKStateManager::unbind_from_all_namespaces(void *resource)
{
uniform_buffers_.unbind(resource);
storage_buffers_.unbind(resource);
images_.unbind(resource, this);
textures_.unbind(resource);
is_dirty = true;
}
void VKStateManager::texel_buffer_bind(VKVertexBuffer &vertex_buffer, int binding)
{
textures_.bind(BindSpaceTextures::Type::VertexBuffer,

View File

@@ -260,8 +260,6 @@ class VKStateManager : public StateManager {
void storage_buffer_unbind(void *resource);
void storage_buffer_unbind_all();
void unbind_from_all_namespaces(void *resource);
void texture_unpack_row_length_set(uint len) override;
/**