glsl: Re-synchronize ir_variable_mode and the printer's string array.
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 31 Jan 2011 19:01:27 +0000 (11:01 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 31 Jan 2011 19:04:37 +0000 (11:04 -0800)
Since the introduction of ir_var_system_value, system variables would be
printed as "temporary" and temporaries would result in out-of-bounds
array access, showing up as garbage in printed IR.

src/glsl/ir_print_visitor.cpp

index c56bafd00c5430fd019614d6267df9145d0ea3ef..d0373cb6310bcaaa7cac6845b3c8753c70c346cb 100644 (file)
@@ -97,7 +97,7 @@ void ir_print_visitor::visit(ir_variable *ir)
    const char *const cent = (ir->centroid) ? "centroid " : "";
    const char *const inv = (ir->invariant) ? "invariant " : "";
    const char *const mode[] = { "", "uniform ", "in ", "out ", "inout ",
-                               "temporary " };
+                               "sys ", "temporary " };
    const char *const interp[] = { "", "flat", "noperspective" };
 
    printf("(%s%s%s%s) ",