KhronosGroup / SPIRV-Cross

SPIRV-Cross is a practical tool and library for performing reflection on SPIR-V and disassembling SPIR-V back to high level languages.
Apache License 2.0
1.96k stars 549 forks source link

Fix codegen for shader with only bindless ssbo #2276

Closed Try closed 4 months ago

Try commented 4 months ago

forward declaration of

template<typename T>
struct spvDescriptorArray;

been missing, and without it template specialization is not compilable.

Issue wasn't triggered before, due to bindless ubo/texture/tlas/etc will emit full template and hide the issue.