omar

Results 2356 comments of omar

Hmm - plutovg/plutosvg examples use https://github.com/sammycage/plutovg/tree/main/examples https://github.com/sammycage/plutosvg/tree/master/examples - plutovg.h is inside an include/ folder. plutosvg.h is include a source/ folder. But I presume "installing" them changes the layout. It is...

plutosvg.h itself does: `#include ` So I don't know how it could work with vcpkg if the only possible path include path are "plutovg/plutovg.h" and "plutosvg/plutosvg.h", even if our include...

There's maybe a quirk in pthom message, seems to be conflating vcpkg and conan which I imagine are unrelated recipes. I don't know if Conan's recipe is wrong, but vcpkg...

In general, same answer as #4180, #6298, #6599, #7813, #8309, #8626, #8791, #8981 : rounded secondary viewports are not reliably supported, sorry. In practice it depends on the OS and...

https://github.com/glfw/glfw/blob/936307558ee25bf5d50d7ecf22972efd4c3abd4f/src/cocoa_window.m#L816 ```cpp void _glfwSetWindowDecoratedCocoa(_GLFWwindow* window, GLFWbool enabled) { @autoreleasepool { NSUInteger styleMask = [window->ns.object styleMask]; if (enabled) { styleMask |= (NSWindowStyleMaskTitled | NSWindowStyleMaskClosable); styleMask &= ~NSWindowStyleMaskBorderless; } else { styleMask...

> This is the situation with ImGui::GetIO().ConfigViewportsNoDecoration = false; So mostly likely rounded on macOS is disabled by `NSWindowStyleMaskBorderless`, now maybe you can research if there's a way to reactivate...

> It would be interesting to understand this. I’m not sure at which level I should look to fix it. NSWindowStyleMaskBorderless is a flag that has to be passed when...

```patch - IM_ASSERT(baked->Size == font_size && baked->ContainerFont == font && baked->BakedId == baked_id); + // IM_ASSERT(baked->Size == font_size && baked->ContainerFont == font && baked->BakedId == baked_id); ``` Why this? It...

This is already quite complex, please turn it into a pull request, and if you can, try to preserve history in the PR. Honestly the only reasonable chance we can...

We can rework test suite to load a Chinese font which may be adjusted based on eg system. BUT the test case shouldn’t depend on a specific font or size....