Doug Binks

Results 176 comments of Doug Binks

I'm sorry you were discouraged - I haven't had time to check in depth but the basic idea of this PR is potentially useful.

Does the following work for you: ``` #include #include ``` Make sure you do not have `GLFW_INCLUDE_VULKAN` defined as per [the GLFW Vulkan guide](https://www.glfw.org/docs/3.3/vulkan_guide.html#vulkan_include)

The Khronos Vulkan-Hpp samples use GLFW, and they using `#include` for the `vulkan.hpp` headers. Modules may have some benefits, but they are relatively new and their [compiler support is incomplete](https://en.cppreference.com/w/cpp/compiler_support)....

On the Windows platform you can specify an icon resource in your executable called `"GLFW_ICON"`, and if this is provided it will be loaded by GLFW and used as the...

Thanks for posting this. Your suggested approach It sounds like an interesting idea but I think this is outside the scope of this project and would likely be best done...

Many thanks, if I get time I will look into implementing something like this.

I'm not sure what to do about this one for now, especially given the issue with the MSVC warning. I'll have a look at it when I get time, but...

Thanks for this PR. Your implementation as it stands will break current users layout, so it needs to be changed so that the default is to use `ImGui::NewLine()`. I think...

Thanks - I'll pull this to review once I get some time.

This does not compile for me as the function `ImGui::Spacing()` does not have a parameter: https://github.com/ocornut/imgui/blob/master/imgui.h#L482 I think you could possibly use a `Dummy` of a given height and zero...