Lines Matching refs:indentLevel

721 void generateDeclaration(std::ostringstream& src, const VarType& type, const char* name, int indentLevel,
723 void generateDeclaration(std::ostringstream& src, const Uniform& uniform, int indentLevel);
724 void generateDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel);
726 void generateLocalDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel);
727 void generateFullDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel);
729 void generateDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel)
732 generateFullDeclaration(src, structType, indentLevel);
736 void generateFullDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel)
741 src << "\n" << Indent(indentLevel) << "{\n";
745 src << Indent(indentLevel + 1);
746 generateDeclaration(src, memberIter->getType(), memberIter->getName(), indentLevel + 1,
750 src << Indent(indentLevel) << "}";
753 void generateLocalDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel)
756 generateFullDeclaration(src, structType, indentLevel);
761 void generateDeclaration(std::ostringstream& src, const VarType& type, const char* name, int indentLevel,
793 generateLocalDeclaration(src, curType->getStruct(), indentLevel + 1);
804 generateLocalDeclaration(src, type.getStruct(), indentLevel + 1);
821 void generateDeclaration(std::ostringstream& src, const Uniform& uniform, int indentLevel)
826 generateDeclaration(src, uniform.getType(), uniform.getName(), indentLevel, uniform.getFlags() & UNUSED_BOTH);