Petr Kobalicek
Petr Kobalicek
Hello, not at the moment, this is the blocker: - https://github.com/microsoft/vcpkg/pull/39090 Since vcpkg team has some weird demands about the ports I have decided not to contribute to vcpkg anymore....
Completed, thanks @JakubMelka!
Arabic support requires shaping (that's a step that is running before GSUB/GPOS) - this is not implemented at the moment. Help would be seriously welcome here.
This function will be removed as there is no practical use of it in Blend2D today.
Unfortunately this was not the goal - nodebug should also be nodebug in debug mode as you can skip all the getters during debugging (which is the annoying part of...
I'm closing this one as the current design as is as intended - if there is a need for a change, please open an issue.
Additional comment: This is related to making the output image mutable when attaching a multithreaded rendering context to it. At the moment it's done during the rendering context construction, but...
I think this is not fixing the root cause of the problem though. The C++ `std::filesystem` is kinda weird when it comes to UTF-8 encoding. In the past char* and...
If you use `L"G:\\Tuấn Anh\\tết.txt"` it means you are using `wchar_t*` string and not `char*` string. `wchar_t` has a defined encoding by platform, but `char` doesn't always mean UTF-8 and...
> what does AWS CPP library do in this scenario? @kobalicek I have no idea. Usually when you want UTF-8 file naming on Windows you would convert your UTF-8 string...