Esempio n. 1
0
// Window (https://wiki.libsdl.org/SDL_GetWindowSurface)
func (window *Window) GetSurface() (*Surface, error) {
	surface := (*Surface)(unsafe.Pointer(C.SDL_GetWindowSurface(window.cptr())))
	if surface == nil {
		return nil, GetError()
	}
	return surface, nil
}
Esempio n. 2
0
func (win *Window) GetSurface() (*Surface, error) {
	s := C.SDL_GetWindowSurface(win.c)
	if s == nil {
		return nil, getError()
	}

	return (*Surface)(unsafe.Pointer(s)), nil
}
Esempio n. 3
0
File: video.go Progetto: salihdb/sdl
// Surface returns the surface associated with the window.
func (win *Window) Surface() (surface *Surface, err error) {
	surface = new(Surface)
	surface.cSurface = C.SDL_GetWindowSurface(win.cWin)
	if surface.cSurface == nil {
		return nil, getError()
	}
	return surface, nil
}
Esempio n. 4
0
func (w *Window) GetSurface() *Surface {
	return wrapSurface(C.SDL_GetWindowSurface(w.cWindow))
}
Esempio n. 5
0
func (window *Window) GetSurface() *Surface {
	_window := (*C.SDL_Window)(unsafe.Pointer(window))
	return (*Surface)(unsafe.Pointer(C.SDL_GetWindowSurface(_window)))
}
Esempio n. 6
0
func (window *Window) GetSurface() *Surface {
	return (*Surface)(unsafe.Pointer(C.SDL_GetWindowSurface(window.cptr())))
}