Home | History | Annotate | Download | only in glshared

Lines Matching refs:indentLevel

812 void		generateDeclaration			(std::ostringstream& src, const VarType& type, const char* name, int indentLevel, deUint32 unusedHints);
813 void generateDeclaration (std::ostringstream& src, const Uniform& uniform, int indentLevel);
814 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel);
816 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel);
817 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel);
819 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel)
822 generateFullDeclaration(src, structType, indentLevel);
826 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel)
831 src << "\n" << Indent(indentLevel) << "{\n";
835 src << Indent(indentLevel+1);
836 generateDeclaration(src, memberIter->getType(), memberIter->getName(), indentLevel+1, memberIter->getFlags() & UNUSED_BOTH);
839 src << Indent(indentLevel) << "}";
842 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel)
845 generateFullDeclaration(src, structType, indentLevel);
850 void generateDeclaration (std::ostringstream& src, const VarType& type, const char* name, int indentLevel, deUint32 unusedHints)
881 generateLocalDeclaration(src, curType->getStruct(), indentLevel+1);
891 generateLocalDeclaration(src, type.getStruct(), indentLevel+1);
906 void generateDeclaration (std::ostringstream& src, const Uniform& uniform, int indentLevel)
911 generateDeclaration(src, uniform.getType(), uniform.getName(), indentLevel, uniform.getFlags() & UNUSED_BOTH);