| 477 | } |
| 478 | |
| 479 | static LLGL::Extent2D ScaleResolutionForDisplay(const LLGL::Extent2D& res, const LLGL::Display* display) |
| 480 | { |
| 481 | if (display != nullptr) |
| 482 | return ScaleResolution(res, display->GetScale()); |
| 483 | else |
| 484 | return res; |
| 485 | } |
| 486 | |
| 487 | ExampleBase::ExampleBase(const LLGL::UTF8String& title) |
| 488 | { |
no test coverage detected