X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fglsl%2Fgenerate.cpp;h=c9803acc3b2afd5698b29f66c8d69a110ddfc18c;hb=de87bb70ae10de39a39b2415407a234ab28099cf;hp=07181d3583e69fbc1067292bbaddc7855c58a5ac;hpb=fd44325059d59d32d47ef3feb6d41d846f7f36f0;p=libs%2Fgl.git diff --git a/source/glsl/generate.cpp b/source/glsl/generate.cpp index 07181d35..c9803acc 100644 --- a/source/glsl/generate.cpp +++ b/source/glsl/generate.cpp @@ -143,6 +143,16 @@ TypeDeclaration *TypeResolver::resolve_type(const string &name) return 0; } +void TypeResolver::visit(Block &block) +{ + for(NodeList::iterator i=block.body.begin(); i!=block.body.end(); ++i) + { + if(!block.parent) + type_insert_point = i; + (*i)->visit(*this); + } +} + void TypeResolver::visit(BasicTypeDeclaration &type) { type.base_type = resolve_type(type.base); @@ -157,6 +167,8 @@ void TypeResolver::visit(BasicTypeDeclaration &type) if(type.kind==BasicTypeDeclaration::ALIAS && type.base_type) alias_map[&type] = type.base_type; + else if(type.kind==BasicTypeDeclaration::ARRAY && type.base_type) + array_types[type.base_type] = &type; stage->types.insert(make_pair(type.name, &type)); } @@ -175,7 +187,26 @@ void TypeResolver::visit(StructDeclaration &strct) void TypeResolver::visit(VariableDeclaration &var) { - var.type_declaration = resolve_type(var.type); + TypeDeclaration *type = resolve_type(var.type); + if(var.array && type) + { + map::iterator i = array_types.find(type); + if(i==array_types.end()) + { + BasicTypeDeclaration *array = new BasicTypeDeclaration; + array->source = BUILTIN_SOURCE; + array->name = type->name+"[]"; + array->kind = BasicTypeDeclaration::ARRAY; + array->base = type->name; + array->base_type = type; + stage->content.body.insert(type_insert_point, array); + array->visit(*this); + type = array; + } + else + type = i->second; + } + var.type_declaration = type; } void TypeResolver::visit(FunctionDeclaration &func)