| 200 | } |
| 201 | |
| 202 | static bool wndValidateClientRectSize(int32_t width, int32_t height) |
| 203 | { |
| 204 | if ((abs(getRectWidth(&pWindowRef->clientRect) - width) > 1) || (abs(getRectHeight(&pWindowRef->clientRect) - height) > 1)) |
| 205 | return false; |
| 206 | return true; |
| 207 | } |
| 208 | |
| 209 | static void wndUpdateResolutionsList(void* pWindowResWidget) |
| 210 | { |
no test coverage detected