Lines Matching refs:name

111 		src << in << " " << glu::declare(input->varType, inputPrefix + input->name) << ";\n";
123 src << "flat " << out << " " << glu::declare(intType, outputPrefix + output->name) << ";\n";
126 src << "flat " << out << " " << glu::declare(output->varType, outputPrefix + output->name) << ";\n";
137 src << "\t" << glu::declare(input->varType, input->name) << " = " << inputPrefix << input->name << ";\n";
141 src << "\t" << glu::declare(output->varType, output->name) << ";\n";
160 src << "\t" << outputPrefix << output->name << " = " << glu::getDataTypeName(intBaseType) << "(" << output->name << ");\n";
163 src << "\t" << outputPrefix << output->name << " = " << output->name << ";\n";
190 src << "flat in " << glu::declare(input->varType, inputPrefix + input->name) << "[];\n";
202 src << "flat out " << glu::declare(intType, outputPrefix + output->name) << ";\n";
205 src << "flat out " << glu::declare(output->varType, outputPrefix + output->name) << ";\n";
215 src << "\t" << glu::declare(input->varType, input->name) << " = " << inputPrefix << input->name << "[0];\n";
219 src << "\t" << glu::declare(output->varType, output->name) << ";\n";
240 src << "\t" << outputPrefix << output->name << " = " << glu::getDataTypeName(intBaseType) << "(" << output->name << ");\n";
243 src << "\t" << outputPrefix << output->name << " = " << output->name << ";\n";
282 src << "in " << glu::declare(input->varType, inputPrefix + input->name) << ";\n"
283 << "flat out " << glu::declare(input->varType, outputPrefix + input->name) << ";\n";
291 src << "\t" << outputPrefix << input->name << " = " << inputPrefix << input->name << ";\n";
305 const int location = de::lookup(outLocationMap, output.name);
306 const std::string outVarName = outputPrefix + output.name;
339 decl.name = outVarName + "_" + de::toString(vecNdx);
354 src << " o_" << output->name << " = floatBitsToUint(" << valuePrefix << output->name << ");\n";
361 src << "\t" << outputPrefix << output->name << "_" << vecNdx << " = floatBitsToUint(" << valuePrefix << output->name << "[" << vecNdx << "]);\n";
363 src << "\t" << outputPrefix << output->name << "_" << vecNdx << " = " << valuePrefix << output->name << "[" << vecNdx << "];\n";
370 src << "\t" << outputPrefix << output->name << " = " << glu::getDataTypeName(intBaseType) << "(" << valuePrefix << output->name << ");\n";
373 src << "\t" << outputPrefix << output->name << " = " << valuePrefix << output->name << ";\n";
389 src << "flat in " << glu::declare(input->varType, inputPrefix + input->name) << ";\n";
397 src << "\t" << glu::declare(input->varType, input->name) << " = " << inputPrefix << input->name << ";\n";
401 src << "\t" << glu::declare(output->varType, output->name) << ";\n";
438 src << "flat in " << glu::declare(intType, inputPrefix + output->name) << ";\n";
441 src << "flat in " << glu::declare(output->varType, inputPrefix + output->name) << ";\n";
479 std::map<std::string, int> locationMap; //! Map from symbol name to start location
503 TCU_CHECK_INTERNAL(!de::contains(ret.locationMap, it->name));
504 de::insert(ret.locationMap, it->name, location);
600 const std::string attribName = "a_" + symbol.name;
670 const int outLocation = de::lookup(m_outputLayout.locationMap, output.name);
1102 inputStruct.addMember(symIter->name.c_str(), symIter->varType);
1110 outputStruct.addMember(symIter->name.c_str(), symIter->varType);
1134 src << "\t" << glu::declare(symIter->varType, symIter->name) << " = inputs[" << invocationNdxName << "]." << symIter->name << ";\n";
1137 src << "\t" << glu::declare(symIter->varType, symIter->name) << ";\n";
1151 src << "\toutputs[" << invocationNdxName << "]." << symIter->name << " = " << symIter->name << ";\n";