| 408 | } |
| 409 | |
| 410 | int MakeColorInt(uint32_t red, uint32_t green, uint32_t blue) { |
| 411 | int color = (255 << 24) | (red << 16) | (green << 8) | (blue << 0); |
| 412 | return color; |
| 413 | } |
| 414 | |
| 415 | Color ToColor(int value) { |
| 416 | auto color = static_cast<uint32_t>(value); |
no outgoing calls
no test coverage detected