--------------------------------- AttributeDescriptor::PrintFlags Converts Vertex Flags into a string
| 71 | // Converts Vertex Flags into a string |
| 72 | // |
| 73 | std::string AttributeDescriptor::PrintFlags(T_VertexFlags const flags) |
| 74 | { |
| 75 | std::string flagstring; |
| 76 | |
| 77 | for (auto const attributeIt : AttributeDescriptor::s_VertexAttributes) |
| 78 | { |
| 79 | if (flags & attributeIt.first) |
| 80 | { |
| 81 | flagstring += attributeIt.second.name + std::string(", "); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | return flagstring; |
| 86 | } |
| 87 | |
| 88 | //------------------------------------- |
| 89 | // AttributeDescriptor::GetVertexSize |
nothing calls this directly
no outgoing calls
no test coverage detected