render method
Render a single frame.
Implementation
@override
Future render() async {
_last = DateTime.now().millisecondsSinceEpoch * 1000000;
_module.ccall(
"render",
"void",
[
"void*".toJS,
"uint64_t".toJS,
"void*".toJS,
"void*".toJS,
"void*".toJS
].toJS,
[
_viewer!,
0.toJS,
null, // pixelBuffer,
null, // callback
null // data
].toJS,
null);
}