| 12 | namespace |
| 13 | { |
| 14 | Color CpDebugColorToColor(cpSpaceDebugColor c) |
| 15 | { |
| 16 | return Color{ static_cast<Nz::UInt8>(c.r * 255.f), static_cast<Nz::UInt8>(c.g * 255.f), static_cast<Nz::UInt8>(c.b * 255.f), static_cast<Nz::UInt8>(c.a * 255.f) }; |
| 17 | } |
| 18 | |
| 19 | cpSpaceDebugColor ColorToCpDebugColor(Color c) |
| 20 | { |
no outgoing calls
no test coverage detected