export oto_OnReadCallback
(buf *C.float, length C.size_t)
| 37 | |
| 38 | //export oto_OnReadCallback |
| 39 | func oto_OnReadCallback(buf *C.float, length C.size_t) { |
| 40 | theContext.mux.ReadFloat32s(unsafe.Slice((*float32)(unsafe.Pointer(buf)), length)) |
| 41 | } |
| 42 | |
| 43 | type context struct { |
| 44 | mux *mux.Mux |
nothing calls this directly
no test coverage detected
searching dependent graphs…