Doug Binks
Doug Binks
The theme I'm using is setup via the function [SetupimGuiStyle in this Gist](https://gist.github.com/dougbinks/8089b4bbaccaaf6fa204236978d165a9#file-imguiutils-h-L9-L93), based on the [light style by @itamago](https://github.com/ocornut/imgui/pull/511#issuecomment-175719267). I modified this slightly to unify the treatment of alpha,...
Thanks for the PR, I'll take a look at this soon. Given enkiMI is only 2 source files with no complex options I'd not considered a cmake project to be...
Thanks for filing the issue - I'll look into adding `target_include_directories` (I think this would need to be done for both static and dynamic library builds), for now you can...
The `ExecuteRange` virtual function of an `ITaskSet` provides a parallel_for style interface, as does the TaskSet version which takes a lambda function. So for example if you have a simple...
For the C API you can't use lambda's, but instead you use a simple function, take a look at the [ParallelSum_c](https://github.com/dougbinks/enkiTS/blob/master/example/ParallelSum_c.c) and the following based on the above example: ```C...
This would seem a useful addition to the current [path drop support](https://www.glfw.org/docs/latest/input_guide.html#path_drop). I might be able to undertake this work at some point in the future but am a little...
Right, I think this would be via a window attribute similar to `GLFW_HOVERED`: ```C if (glfwGetWindowAttrib(window, GLFW_DRAGGING)) { highlight_drop_target(); } ``` This attribute might actually be the easiest additional API,...
That is a separate issue, so I would open this as a new issue.
GLFW is so far a C library, so using the standard C++ COM approach might be out of scope. However COM is a binary standard so can be used from...
Not that I am aware of.