| 392 | /////////////////////////////////////////// |
| 393 | |
| 394 | recti_t platform_win_rect(platform_win_t window_id) { |
| 395 | if (window_id != 1) return {}; |
| 396 | window_t* win = &web_window; |
| 397 | |
| 398 | return recti_t{ 0, 0, |
| 399 | win->swapchain.width, |
| 400 | win->swapchain.height }; |
| 401 | } |
| 402 | |
| 403 | /////////////////////////////////////////// |
| 404 |
no outgoing calls
no test coverage detected