Lines Matching refs:indentLevel
813 void generateDeclaration (std::ostringstream& src, const VarType& type, const char* name, int indentLevel, deUint32 unusedHints);
814 void generateDeclaration (std::ostringstream& src, const Uniform& uniform, int indentLevel);
815 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel);
817 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel);
818 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel);
820 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel)
823 generateFullDeclaration(src, structType, indentLevel);
827 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel)
832 src << "\n" << Indent(indentLevel) << "{\n";
836 src << Indent(indentLevel+1);
837 generateDeclaration(src, memberIter->getType(), memberIter->getName(), indentLevel+1, memberIter->getFlags() & UNUSED_BOTH);
840 src << Indent(indentLevel) << "}";
843 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel)
846 generateFullDeclaration(src, structType, indentLevel);
851 void generateDeclaration (std::ostringstream& src, const VarType& type, const char* name, int indentLevel, deUint32 unusedHints)
884 generateLocalDeclaration(src, curType->getStruct(), indentLevel+1);
894 generateLocalDeclaration(src, type.getStruct(), indentLevel+1);
909 void generateDeclaration (std::ostringstream& src, const Uniform& uniform, int indentLevel)
914 generateDeclaration(src, uniform.getType(), uniform.getName(), indentLevel, uniform.getFlags() & UNUSED_BOTH);