WIP: Vulkan: Workbench #107886

Closed
Jeroen Bakker wants to merge 88 commits from Jeroen-Bakker:vulkan-draw-manager-workbench into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
2 changed files with 2 additions and 2 deletions
Showing only changes of commit a0beda7a5b - Show all commits

View File

@ -62,7 +62,7 @@ void ShaderInterface::sort_inputs()
MutableSpan<ShaderInput>(inputs_ + attr_len_ + ubo_len_ + uniform_len_, ssbo_len_));
}
void ShaderInterface::debug_print()
void ShaderInterface::debug_print() const
{
Span<ShaderInput> attrs = Span<ShaderInput>(inputs_, attr_len_);
Span<ShaderInput> ubos = Span<ShaderInput>(inputs_ + attr_len_, ubo_len_);

View File

@ -77,7 +77,7 @@ class ShaderInterface {
ShaderInterface();
virtual ~ShaderInterface();
void debug_print();
void debug_print() const;
inline const ShaderInput *attr_get(const char *name) const
{