[go-nuts] Vulkan wrapper (was Re: c-for-go and slice output parameters)

2021-11-21 Thread 'Jason Watson' via golang-nuts
I got frustrated trying to figure out the c-for-go side of things, so I wrote my own lightweight wrapper over the vulkan API. Instead of trying to reverse engineer the c header files, I started with their published XML specification. https://github.com/ibd1279/vks Jmw On Saturday, November 13,

Re: [go-nuts] Command stuck when using net/rpc & exec.Command

2021-11-21 Thread 宇晗杨
Got it. I found that I forgot to add `time.Sleep` in `main()` function so there would be some schedule problem, now I fix the problem. Thanks. On Sat, Nov 20, 2021 at 10:31 AM Kurtis Rader wrote: > On Fri, Nov 19, 2021 at 8:30 AM ChrisFisher > wrote: > >> Hey Guys, I want to do a micro benchmar