Randall O'Reilly

Results 294 comments of Randall O'Reilly

The 3.3.8 update is now in the Go wrapper and I reliably replicate this issue with this updated version as well, on the same macbook. In addition, the ordering of...

here's a simple C program that replicates the bugs directly using the latest 3.3.8 glfw, installed using `brew install glfw` ```C #include #include #include #include static void error_callback(int error, const...

Investigating the glfw source code further: the source of the problem appears to be that the glfw code is maintaining a static list of monitors and only triggering additions and...

The following patch fixes these issues. I suspect similar issues apply to other platforms, but haven't tested there. ```C --- a/v3.3/glfw/glfw/src/cocoa_monitor.m +++ b/v3.3/glfw/glfw/src/cocoa_monitor.m @@ -299,6 +299,8 @@ void _glfwPollMonitorsNS(void) CGGetOnlineDisplayList(0,...

See #62 -- maybe someone can try it out on linux or windows? I will try it later myself at some point..

Actually, I just did `make` in the current `vulkan-go` repository without updating the `vulkan/*.h` headers and it crashed in exactly the same way. So I reverted to the Oct 14,...

still a todo it seems -- here's the relevant code: ```go for i := 0; i < numFields; i++ { f := s.Struct().Field(i) if _, err := isPyCompatField(f); err !=...

I was able to confirm that it wasn't introduced by the variadic function addition, by going back to fcad870bd8df55d2290b6ace52d3119f6446e222

Yeah, would it make sense to delete this PR for the time being and rebase on the variadic version which I will test now. The variadic one does not have...

you can resubmit a PR once you have it working with out leaks I mean.