gogetdoc
                                
                                 gogetdoc copied to clipboard
                                
                                    gogetdoc copied to clipboard
                            
                            
                            
                        No documentation found when trying to look up go-sdl function.
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
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
Thanks for the report. This is most likely because I've disabled CGo. I will take a look.
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 https://github.com/zmb3/gogetdoc/blob/b4c1dcb095da28d1d54e10184a3eddd9b0122f89/main.go#L71 to true, but that wasn't enough. Just made the check very slow and still didn't return a result.