[qfcc] Record type id for block types

I had initially thought I'd need to duplicate types for block members,
but that was before I did the higher-level type branching, and then I
forgot to record the type for block members. Fixes the duplicate types
on structs in blocks, and thus a type mismatch validation error in
partphysics.comp.
This commit is contained in:
Bill Currie 2025-02-16 16:27:24 +09:00
parent 70bfa64333
commit feca36bf59

View file

@ -595,6 +595,7 @@ spirv_BlockType (const type_t *type, int *size, int *align, spirvctx_t *ctx)
// struct or union, but union not allowed
id = spirv_struct (type, size, align, ctx);
}
spirv_add_type_id (type, id, ctx);
return id;
} else {
// non-aggregate, non-matrix type, so no need for special handling