Home | History | Annotate | Download | only in compiler

Lines Matching full:typestring

136                         uniforms += "uniform " + typeString(type) + " " + decorate(name) + arrayString(type) + ";\n";
144 varyings += "static " + typeString(type) + " " + decorate(name) + arrayString(type) + " = " + initializer(type) + ";\n";
286 uniforms += "uniform " + typeString(type) + " " + decorate(name) + arrayString(type) + ";\n";
293 attributes += "static " + typeString(type) + " " + decorate(name) + arrayString(type) + " = " + initializer(type) + ";\n";
301 varyings += "static " + typeString(type) + " " + decorate(name) + arrayString(type) + " = " + initializer(type) + ";\n";
1048 out << typeString(variable->getType()) + " ";
1096 out << typeString(node->getType()) << " " << decorate(node->getName()) << "(";
1128 out << typeString(node->getType()) << " ";
1755 return qualifierString(qualifier) + " " + typeString(type) + " " + name + arrayString(type);
1772 TString OutputHLSL::typeString(const TType &type)
1791 string += " " + typeString(field) + " " + field.getFieldName() + arrayString(field) + ";\n";
1914 structure += " " + typeString(field) + " " + field.getFieldName() + arrayString(field) + ";\n";
1939 constructor += typeString(ctorType) + " " + ctorName + "(";
1946 constructor += typeString(type) + " x" + str(parameter) + arrayString(type);
1963 constructor += " return " + typeString(ctorType) + "(";
2113 out << typeString(type) << "(";