Hannes Winkler

Results 303 comments of Hannes Winkler

> In the meantime, is there any possibility to configure this renderer as 30 fps or less ? > In otherwords, Can the flutter-pi renderer reports a "slow" GPU to...

Sounds very unlikely to be a flutter-pi issue. Flutter-pi just provides flutter with graphics output / user input (+ some other stuff, but nothing related to what you're doing). I've...

That hardware cursor message is not the reason for the crash. Can you provide a coredump so I can look into it? (Just execute `ulimit -c unlimited` before, then run...

Somehow gdb can't make sense of the core file. Can you try building flutter-pi in debug mode? - Go into your build dir - run `cmake .. -DCMAKE_BUILD_TYPE=Debug` - `ninja`...

> Somehow ninja runs in the terminal and I cannot type in more commands unless I stop ninja. > Please advise My bad, use `make -j4`. ninja is what I...

Yeah that's strange > is there a way to completely disable the cursor? I mean, you _could_ edit the sources and disable the cursor, but that doesn't fix the problem,...

> Hi there Hannes, > > I am running into the same problem, whenever I add the dimensions of the screen size to the command `flutter-pi -d "306,230" my_apps_flutter_assets`, my...

The `%lld` errors are probably due to x86, I never tested that before. Should be an easy fix though (using `inttypes.h`) The `libinput_device_touch_get_touch_count` is a function introduced in newer versions...

First part of this issue should be resolved by #145

Sorry, completely forgot about this. It's probably caused by `flutter build bundle` stripping away the part of the `kernel_blob.bin` that can compile dart code into code that can be executed...