summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/slang_compile.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-11-24 09:28:25 -0700
committerBrian Paul <brian.paul@tungstengraphics.com>2008-11-24 09:28:25 -0700
commita2037137385671c0673d1de6eb1c36dbd3cd78f3 (patch)
treeead4c5c6349c81a6405bac12d154b8eb74a2f03d /src/mesa/shader/slang/slang_compile.c
parentdc1107c08d0ccbeeb063f2e46be598f16cbe9f21 (diff)
mesa: copy centroid/invariance/precision info in parse_init_declarator()
Diffstat (limited to 'src/mesa/shader/slang/slang_compile.c')
-rw-r--r--src/mesa/shader/slang/slang_compile.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_compile.c b/src/mesa/shader/slang/slang_compile.c
index 07c40eaa32..f684f6cc1d 100644
--- a/src/mesa/shader/slang/slang_compile.c
+++ b/src/mesa/shader/slang/slang_compile.c
@@ -1799,8 +1799,11 @@ parse_init_declarator(slang_parse_ctx * C, slang_output_ctx * O,
RETURN0;
}
- /* copy the declarator qualifier type, parse the identifier */
+ /* copy the declarator type qualifier/etc info, parse the identifier */
var->type.qualifier = type->qualifier;
+ var->type.centroid = type->centroid;
+ var->type.precision = type->precision;
+ var->type.variant = type->variant;
var->a_name = a_name;
if (var->a_name == SLANG_ATOM_NULL)
RETURN0;