Keithcat1

Results 71 comments of Keithcat1

I tried: set GO111MODULE=on go install github.com/veandco/go-sdl2/sdl gomacro ... gomacro> import "github.com/veandco/go-sdl2/sdl" // debug: looking for package "github.com/veandco/go-sdl2/sdl" ... error loading package "github.com/veandco/go-sdl2/sdl" metadata: C:\py\go\pkg\mo d\github.com\veandco\[email protected]\sdl\audio.go:29:8: could not import C...

package main import( "github.com/veandco/go-sdl2/mix" "time" "os" ) func HandleError(err error) { if err!=nil { panic(err) } } func main() { if len(os.Args)

panic: FLAC support not available goroutine 1 [running, locked to thread]: main.HandleError(...) command-line-arguments/s.go:8 main.main() command-line-arguments/s.go:16 +0x1fa

C:\py\git>wsl keith@keith-pc:/mnt/c/py/git$ git clone https://github.com/xiph/opus Cloning into 'opus'... remote: Enumerating objects: 30861, done. remote: Counting objects: 100% (41/41), done. remote: Compressing objects: 100% (40/40), done. remote: Total 30861 (delta 19),...

I also have this error. C:\python\python.exe build.py Doing windows sed hack to fix declspec for PyInit cmd had error: exec: "sed": executable file not found in %PATH%

It doesn't? Weird. I was trying to learn how to use Wasmtime from Python. I assumed that in order to load a WASM module and call its exported functions, it...

Ok, how do I export symbols so that Wasmtime can find and call them? Simply compiling a .C file with some functions in it does not expose them.

Create a new source based on rodio::static_buffer::StaticSamplesBuffer which, instead of accepting a &'static [S], accepts an Arc which allows you to load a file from disk once, decode it into...

Hi, Sorry, I'm not much good with C, most of my experience is with Cython, and I've never wrapped a C library. Would there be a SDL wrapper that links...

Hi and thanks for the help. Your OpenAL library bindings look really nice, do they require DLLs? The SDL section under Windows says to do, and I'm currently using Windows....