| 126 | } |
| 127 | |
| 128 | static void OutputNodeTree(Node* node, int indent) |
| 129 | { |
| 130 | OutputIndent(indent); |
| 131 | printf("%s: ", node->m_Name); |
| 132 | if (node->m_Skin) |
| 133 | printf("skin: %s", node->m_Skin->m_Name); |
| 134 | printf("\n"); |
| 135 | |
| 136 | |
| 137 | for (uint32_t i = 0; i < node->m_Children.Size(); ++i) |
| 138 | { |
| 139 | OutputNodeTree(node->m_Children[i], indent+1); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | template <int N> |
| 144 | static void OutputArray(const char* name, float (&p)[N], int indent) |
no test coverage detected