From 7d82c765a8ac7bdbad4cb445b1d2fd216a6e744d Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 28 Apr 2010 12:01:40 -0700 Subject: [PATCH] IR print visitor: Just print the name of structures Treat structure types like other non-array types. We'll have to print the structure defintion elsewhere. --- ir_print_visitor.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ir_print_visitor.cpp b/ir_print_visitor.cpp index 778a5c1..f1108c6 100644 --- a/ir_print_visitor.cpp +++ b/ir_print_visitor.cpp @@ -31,10 +31,6 @@ print_type(const glsl_type *t) printf("(array "); print_type(t->fields.array); printf(" %u)", t->length); - } else if (t->base_type == GLSL_TYPE_STRUCT) { - printf("(struct (%s %u ", t->name ? t->name : "@", t->length); - printf("(FINISHME: structure fields go here) "); - printf(")"); } else { printf("%s", t->name); } -- 2.7.4