| 262 | |
| 263 | |
| 264 | bool Stream::write(const ColorI& rColor) |
| 265 | { |
| 266 | bool success = write(rColor.red); |
| 267 | success |= write(rColor.green); |
| 268 | success |= write(rColor.blue); |
| 269 | success |= write(rColor.alpha); |
| 270 | |
| 271 | return success; |
| 272 | } |
| 273 | |
| 274 | bool Stream::write(const LinearColorF& rColor) |
| 275 | { |
no test coverage detected