Roman Siromakha
Roman Siromakha
Is there any kind of custom UI scaling support? So it can be changed in runtime globally for all ui elements and be not a system specific. [egui](https://github.com/emilk/egui) supports it...
This is a default path when collada-dom is built as following: ``` cmake -D CMAKE_INSTALL_PREFIX=install . cmake --build . cmake --install . ```
Otherwise png plugin for Android is not compiled because it [requires](https://github.com/openscenegraph/OpenSceneGraph/blob/8437550c2566a6b00a6963eb725377c36bb3f07c/src/osgPlugins/CMakeLists.txt#L114) zlib.
This is [useful](https://gitlab.com/OpenMW/openmw/-/merge_requests/1379) for OpenMW to store `std::int64_t` and `std::uint64_t` user values inside `osg::Object`. C++ doesn't guarantee `long` to be 64 bit wide but it's common to have `std::int64_t` as...
Thit leads to failing jobs with error: ``` ERROR: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit ``` Example job:...
To demonstrate on practice more library features: * Request with callback completion token * Request with future completion token * Retries with connection pool with simulated network disruption * Composite...
sol::optional does not support copy construction of non trivially copyable types with const modifier
See https://godbolt.org/z/Ta85r4a7e. Basically the problem is in the use of [placement new](https://github.com/ThePhD/sol2/blob/9c882a28fdb6f4ad79a53a4191b43ce48a661175/include/sol/optional_implementation.hpp#L404) (C++ does not allow to use pointer to const for the address). There is [`std::construct_at`]( https://en.cppreference.com/w/cpp/memory/construct_at) for such...
Following code compiled with GCC and Clang produces different output: ```c++ #include #include #include #include int main() { sol::state state; auto f0 = [] { std::printf("f0\n"); }; auto f1 =...