From feca36bf59b4928cba4ec95b58df2db36e0d3c3c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Feb 2025 16:27:24 +0900 Subject: [PATCH] [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. --- tools/qfcc/source/target_spirv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/target_spirv.c b/tools/qfcc/source/target_spirv.c index d1c6e3565..8df004d6f 100644 --- a/tools/qfcc/source/target_spirv.c +++ b/tools/qfcc/source/target_spirv.c @@ -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