| 36 | } |
| 37 | |
| 38 | LLGL::ColorRGBAub RandColorRGBA() |
| 39 | { |
| 40 | return LLGL::ColorRGBAub |
| 41 | { |
| 42 | static_cast<std::uint8_t>(RandInt(255)), |
| 43 | static_cast<std::uint8_t>(RandInt(255)), |
| 44 | static_cast<std::uint8_t>(RandInt(255)), |
| 45 | static_cast<std::uint8_t>(RandInt(255)) |
| 46 | }; |
| 47 | } |
| 48 | |
| 49 | struct TestConfig |
| 50 | { |
no test coverage detected