diff options
author | Eric Anholt <[email protected]> | 2010-07-29 14:36:59 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-29 14:38:04 -0700 |
commit | bf496862be1ba863285aa2c1a2262b2d764c3e53 (patch) | |
tree | 7fe064181d6fafef457f9019dd86fec1a8546e8f /src/glsl/ir_print_visitor.h | |
parent | 9a8eb684d4cd602b6c5e6876cd1eceabc3a8896c (diff) |
glsl2: When dumping IR for debug, indent nested blocks.
No more trying to match parens in my head when looking at the body of
a short function containing an if statement.
Diffstat (limited to 'src/glsl/ir_print_visitor.h')
-rw-r--r-- | src/glsl/ir_print_visitor.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/glsl/ir_print_visitor.h b/src/glsl/ir_print_visitor.h index 3db42e24ca3..4feeb8c184d 100644 --- a/src/glsl/ir_print_visitor.h +++ b/src/glsl/ir_print_visitor.h @@ -38,9 +38,8 @@ extern void _mesa_print_ir(exec_list *instructions, class ir_print_visitor : public ir_visitor { public: ir_print_visitor() - : deref_depth(0) { - /* empty */ + indentation = 0; } virtual ~ir_print_visitor() @@ -48,6 +47,8 @@ public: /* empty */ } + void indent(void); + /** * \name Visit methods * @@ -76,7 +77,7 @@ public: /*@}*/ private: - int deref_depth; + int indentation; }; #endif /* IR_PRINT_VISITOR_H */ |