From 3190daaf70173632cddc0dbc31bf098786df1849 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 17 Feb 2025 14:18:02 +0900 Subject: [PATCH] [qfcc] Copy block struct member attributes Gets attributes from layout specifiers working for blocks (eg, gl_PerVertex). --- tools/qfcc/source/glsl-block.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/glsl-block.c b/tools/qfcc/source/glsl-block.c index f7461403c..ba9cccf8d 100644 --- a/tools/qfcc/source/glsl-block.c +++ b/tools/qfcc/source/glsl-block.c @@ -199,6 +199,7 @@ glsl_block_type (const type_t *type, const char *pre_tag) sym->sy_type = sy_offset; sym->offset = -1; sym->id = s->id; + sym->attributes = s->attributes; symtab_addsymbol (nt->symtab, sym); if (type_align (ftype) > alignment) { alignment = type_align (ftype);