Alan Zaffetti
Alan Zaffetti
@raff That seems plausible for the scale issue. The resize callback is here: https://github.com/danfragoso/thdwb/blob/master/mustard/window.go#L139 I pushed the fix to my branch if anyone cares to try it? https://github.com/ajzaff/thdwb/tree/feature-content-scale-23 FWIW `hiDPI`...
Simply install the package equivalents for Mac? ```xcode-select --install``` Or use can use home`brew` if you have it.
The error on line 23 is unchecked so something went wrong. You might try to insert: ``` if err != nil { log.Fatal(err) } ``` Before line 24, `make run`,...
It's likely that the error is related to your version of opengl. This only aims to support 4.1 which is fine if it's in your profile, but would return an...
It looks like you are using Go 1.15. You must update your local Go version to `Go >= 1.16` build the project.
Windows doesn't have a make installation so the program can't be found. I would try: 1. Running the same command on WSL (windows subsystem for Linux) 2. Run the `go...
External dependencies are only OpenGL and GLFW. We could probably add those to Getting Started. If you know the precise steps why not make a small PR.
Starting from a zip file would not be supported out t Of the box. The Makefile attempts to parse the git revision which is not present in the archive. Instead...