From 0f3f275ab28998d12cd26c7dabcc28111dd88780 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 24 Jan 2025 22:05:16 +0900 Subject: [PATCH] [qfcc] Decorate uniform/storage blocks as such Yet another step closer to getting a shader working in Vulkan. --- tools/qfcc/source/glsl-block.c | 2 ++ tools/qfcc/source/target_spirv.c | 1 + 2 files changed, 3 insertions(+) diff --git a/tools/qfcc/source/glsl-block.c b/tools/qfcc/source/glsl-block.c index 9900a3da6..ebe287a11 100644 --- a/tools/qfcc/source/glsl-block.c +++ b/tools/qfcc/source/glsl-block.c @@ -32,6 +32,7 @@ #include "QF/hash.h" #include "QF/va.h" +#include "tools/qfcc/include/attribute.h" #include "tools/qfcc/include/def.h" #include "tools/qfcc/include/defspace.h" #include "tools/qfcc/include/diagnostic.h" @@ -165,6 +166,7 @@ glsl_declare_block_instance (glsl_block_t *block, symbol_t *instance_name) .columns = 1, .meta = ty_struct, .symtab = block->members, + .attributes = new_attribute ("Block", nullptr), }; auto inst_type = find_type (&type); specifier_t spec = { diff --git a/tools/qfcc/source/target_spirv.c b/tools/qfcc/source/target_spirv.c index 5ac4b82a1..9b2b0a74c 100644 --- a/tools/qfcc/source/target_spirv.c +++ b/tools/qfcc/source/target_spirv.c @@ -616,6 +616,7 @@ type_id (const type_t *type, spirvctx_t *ctx) internal_error (0, "can't emit type %s", str->str); } spirv_add_type_id (type, id, ctx); + spirv_decorate_id (id, type->attributes, ctx); return id; }