Exemplo n.º 1
0
func CLRetainEvent(event CL_event) CL_int {
	return CL_int(C.clRetainEvent(event.cl_event))
}
Exemplo n.º 2
0
Arquivo: package.go Projeto: mantyr/cl
// see https://www.khronos.org/registry/cl/sdk/1.1/docs/man/xhtml/clRetainEvent.html
func RetainEvent(e Event) ErrorCode {
	return ErrorCode(C.clRetainEvent(e.clEvent))
}
Exemplo n.º 3
0
Arquivo: event.go Projeto: xfong/tmpCL
func retainEvent(ev *Event) {
	if ev.clEvent != nil {
		C.clRetainEvent(ev.clEvent)
	}
}