Michael Simon
Michael Simon
I had the same problem on Ubuntu 20.04 (not on 16.04), i moved the definition of disctype from unscrambler.h to unscrampler.c and changed it to static. It compiled but i...
You have to insert a new default image setting as resource. ``` use use bevy::render::texture::ImageSettings; //... App::new() .insert_resource(ImageSettings::default_nearest()) //... ``` I don't know if there is a way to define...
I used the library in UEFI applications and there is no standard library (no malloc, realloc, free,...), but there are direct replacements for most of the standard functions (strlen, strcpy,...
> The DRM driver was contributed @MiSimon. Michael, could you take a look at this issue? @kisvegabor I was just the last one who touched it as I prepared the...
Would it be possible to extend Platform or add another Trait with a call like `get_glyph(...) -> Option`? If a glyph is not found in the embedded font data, slint...
This will just hide the duplicates but would be easy to use and requires no further changes, i will try and implement it that way.
Yes indeed, I use LVGL with UEFI for a couple of years now. Till now i used it in a company project with other ported libraries, to make porting easier...
Shall the lv_.* includes be used in every file in the src directory? I think most of the drivers and draw methods are platform specific and may use stdint,.. directly....
I will try to create a pull request for it, but I have a longer time off in two weeks and I want to create a pull request for #5722...
I created the pull request turned out it was not that much work. I removed includes for string and stdlib from the headers and added them to the platform specific...