We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package main import ( "log" "github.com/veandco/go-sdl2/sdl" ) func main() { err := sdl.Init(sdl.INIT_EVERYTHING) if err != nil { log.Fatalf("Unable to init SDL") } defer sdl.Quit() }
$gogetdoc -pos main.go:#95 // the Init call
$gogetdoc -pos main.go:#95
It returns an error: $GOPATH/src/github.com/veandco/go-sdl2/sdl/yuv_sw_c.go:17:16: undeclared name: Surface gogetdoc: no documentation found
src/github.com/veandco/go-sdl2/sdl/yuv_sw_c.go:17:16: undeclared name: Surface gogetdoc: no documentation found
The text was updated successfully, but these errors were encountered:
Thanks for the report. This is most likely because I've disabled CGo. I will take a look.
Sorry, something went wrong.
Any possibility of reviving this? I do a lot of work with veandco/go-sdl2 and would love to have this work.
I tried updating
gogetdoc/main.go
Line 71 in b4c1dcb
import "C"
No branches or pull requests
$gogetdoc -pos main.go:#95
// the Init callIt returns an error: $GOPATH/
src/github.com/veandco/go-sdl2/sdl/yuv_sw_c.go:17:16: undeclared name: Surface gogetdoc: no documentation found
The text was updated successfully, but these errors were encountered: