コード例 #1
0
ファイル: graphics.go プロジェクト: pavanky/arrayfire-go
func (w *Window) DrawImage(a Array, props AFCell) error {
	aferr := C.af_draw_image(w.window, (C.af_array)(a._array), (*C.af_cell)(&props))
	if aferr != 0 {
		return ErrDrawImage
	}
	return nil
}
コード例 #2
0
ファイル: graphics.go プロジェクト: arrayfire/arrayfire-go
func (w *Window) DrawImage(a Array, props Cell) error {
	return af_call(C.af_draw_image(w.window, (C.af_array)(a.arr), (*C.af_cell)(&props)))
}