mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 00:42:10 +00:00
[qfcc] Decorate uniform/storage blocks as such
Yet another step closer to getting a shader working in Vulkan.
This commit is contained in:
parent
6cac4de0ea
commit
0f3f275ab2
2 changed files with 3 additions and 0 deletions
|
@ -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 = {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue