예제 #1
0
파일: sdl_ttf.go 프로젝트: veandco/go-sdl2
// GetError (https://www.libsdl.org/projects/SDL_ttf/docs/SDL_ttf_12.html#SEC12)
func GetError() error {
	e := C.TTF_GetError()
	if e == nil {
		return nil
	}
	return errors.New(C.GoString(e))
}
예제 #2
0
파일: player.go 프로젝트: reusee/player
func fatalTTFError() {
	log.Fatal(C.GoString(C.TTF_GetError()))
}