omar

Results 2356 comments of omar

(thanks for splitting this into two commits)

- What's your context and what were you actually trying to solve? Was it in a general reaction to you toying with DX12 code and wanting more thorough reports? -...

You might alternatively bypass `SetItemKeyOwner()`: ```cpp if (IsItemHovered()) SetKeyOwner(ImGuiKey_MouseWheelY, 0, ImGuiInputFlags_LockThisFrame); ``` We could perhaps find a way for `SetItemKeyOwner()` to work in this case, but it may be ambiguous/hard...

The way it was initially designed it that you can read and write to that `bool Open` flag in the structure, but you are correct this is quite non-idiomatic with...

Support for `FramebufferScale` in directx backends was added very recently #8412 but it's a dumb multiply and by current design we don't expect non-integer value in this field as it...

Closing as lacking information. Please enable asserts and provide more details and we can happily reopen this. High chances that the issue is due to information that was omitted in...

You need to make sure the application process is DPI aware, otherwise Windows reduce sizes and then perform scaling. eg call ImGui_ImplWin32_EnableDpiAwareness() is one possible way to make the process...

Then I don't know what your problem is.

I am not sure, given the grey fringe, it could be that the image use transparency and use premultiplied alpha? Our blending settings don't (btw it was not a good...

Unfortunately as you pointed this not much of this has to do with dear imgui itself. When you call `Image()` it emits a ImDrawCmd (you can browse/look at it in...