[qfcc] Decorate uniform/storage blocks as such

Yet another step closer to getting a shader working in Vulkan.
This commit is contained in:
Bill Currie 2025-01-24 22:05:16 +09:00
parent 6cac4de0ea
commit 0f3f275ab2
2 changed files with 3 additions and 0 deletions

View file

@ -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 = {

View file

@ -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;
}