| 193 | } |
| 194 | |
| 195 | pu::sdl2::TextureHandle::Ref GetApplicationIcon(const u64 app_id) { |
| 196 | const auto it = g_ApplicationIcons.find(app_id); |
| 197 | if(it != g_ApplicationIcons.end()) { |
| 198 | return it->second; |
| 199 | } |
| 200 | return nullptr; |
| 201 | } |
| 202 | |
| 203 | void SleepWhileRender(const u64 ns) { |
| 204 | const u64 start = armGetSystemTick(); |
no outgoing calls
no test coverage detected