Zach Oakes

Results 197 comments of Zach Oakes

Perfect -- with that patch it works in chrome & FF. Thank you again for the help.

I tested it on the latest devel on windows 10 and have not been able to get it to work so far. I'm testing it on [this game project](https://github.com/paranim/parakeet). First...

Shouldn't you be using `bitor`? https://nim-lang.org/docs/bitops.html#bitor.m%2CT%2CT%2Cvarargs%5BT%5D

Gotcha. Well [here](https://github.com/ocornut/imgui/blob/39b99072fb0184cef373b2164ede1d15ca038a9a/imgui.h#L989-L1011) is where the original enum is defined in imgui, looks like all the fields are [in the nim version](https://github.com/nimgl/imgui/blob/de9928dd091c29e4a6d9fa43e50219878730eb66/src/imgui.nim#L306). But maybe we should be using the [bitsize](https://nim-lang.org/docs/manual.html#implementation-specific-pragmas-bitsize-pragma)...

I got the triangle to render [here](https://github.com/oakes/vulkan_triangle_nim) if you want to use that as a reference. I did have to define `VK_NULL_HANDLE` but `VK_TRUE` does in fact exist, you just...

Seems to not be just IMGUI...any nimgl project built with the C++ backend seems to fail with that error. My guess is that it might be GLFW. Maybe we don't...

Yeah there are a lot of enums that need to be added. In the meantime, you can do `cast[VkStructureType](1000001000)` just like in the [vulkan example](https://github.com/nimgl/nimgl/blob/master/examples/tvulkan.nim). That number comes from [vulkan.h](https://github.com/ARM-software/vulkan-sdk/blob/8f892c4edb4b440349f18ca0961387cb1d50621f/include/vulkan/vulkan.h#L204)...

I came up with a pretty easy solution to this. You can manually create a watcher and add it with figwheel's `add-watch!` function. It just runs it with `load-file` so...

My specific issue is that a few of my projects have tasks that run the `cljs` task before creating a jar, and I don't want my ClojureScript dependencies to be...