| 208 | } |
| 209 | |
| 210 | std::string intTo2Hex(int i) |
| 211 | { |
| 212 | std::stringstream stream; |
| 213 | stream << std::setfill('0') << std::setw(2) << std::hex << i; |
| 214 | return stream.str(); |
| 215 | } |
| 216 | |
| 217 | std::string getCEGUIColorFromOgreColourValue(const Ogre::ColourValue& color) |
| 218 | { |
no outgoing calls
no test coverage detected