Matej Knopp

Results 242 comments of Matej Knopp

@matthew-carroll, let me know if this is any better.

Seems like it would be. I'll take a look first thing tomorrow.

I'm looking into this. Out of curiosity, @krll-kov, if you have a simple app with progress indicator, and do not move mouse over the app (or at all), what FPS...

The biggest culprit seems this ```cpp void TaskRunnerWindow::WakeUp() { // When waking up from main thread while there are messages in the message // queue use timer to post the...

I'm working on this. The issue is that despite all documentation the granularity of windows threadpool timer is absolutely abysmal. Right now it seems to me that most robust fix...

> > Hello, this should now be fixed in the [`main` channel](https://docs.flutter.dev/development/tools/sdk/upgrading#switching-flutter-channels). > > You can try this using: > > ``` > > flutter channel main > > flutter...

I think this might be a problem with messages posted through `PostMessage` having higher priority than input messages, see [the documentation](https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-peekmessagea#remarks). That is a bit unfortunate, we could get away...

Should be fixed by https://github.com/flutter/flutter/pull/179538

It passed because the 1ms delay introduced in https://github.com/flutter/flutter/pull/179249 was enough to make the test, but not always enough when dart was flooding the message loop with wake-up messages. I...