| 129 | } |
| 130 | |
| 131 | std::string RenderingColor_Impl::colorString() const { |
| 132 | std::stringstream stream; |
| 133 | stream << "#" << std::setfill('0') << std::setw(6) << std::uppercase << std::hex |
| 134 | << renderingRedValue() * 65536 + renderingGreenValue() * 256 + renderingBlueValue(); |
| 135 | |
| 136 | std::string result = stream.str(); |
| 137 | OS_ASSERT(result.size() == 7); |
| 138 | return result; |
| 139 | } |
| 140 | |
| 141 | } // namespace detail |
| 142 |