Emi

Results 458 comments of Emi

Oh no, that's not great, this being in vkEnumeratePhysicalDevices means I likely won't be able to reproduce it on any of my systems :( After some googling, it looks like...

Looks like it might be a regression/bug in vulkan-loader that has perhaps been fixed already but hasn't made its way into a release/Dawn, https://github.com/lutris/lutris/issues/4158 - this would explain why `vkcube`...

OK that's great to hear, this will probably auto-resolve itself once we update Dawn again in the near future. I'd suggest you set that in your bash profile generally, there...

Here's a starting point perhaps? * Add `Core.createWindow`, it returns a new `*Window` type (which I imagine would largely have identical fields to `Core` today.) * Add `Window.setOptions`, `Window.setShouldClose`, `Window.getFramebufferSize`,...

@ramya-rao-a Unfortunately the language server's find all references is generally the same performance-wise as `guru`. This mostly comes from the way it is implemented in the language server and in...

FYI this no longer happens when using the language server with VS Code since the new godef-based hover implementation.

You can set `"go.languageServerFlags": ["-pprof", ":6060"]` in your VS Code settings and then follow the steps in the README to capture a heap profile and upload the SVG. That would...

@doxxx - Your first heap profile shows the langserver _using_ 1.3GB, and Go having allocated 2.4GB (1.1GB unused but not yet released back to the OS). - Your second heap...

@keegancsmith what are your thoughts on this issue? I looked into the referenced issue and I can imagine two scenarios: 1. Opening a project outside $GOPATH, but having a $GOPATH...