jzrake
jzrake
Attempting to remove a button from its parent on click results in a seg fault: ```C++ class TestApp : public nanogui::Screen { public: TestApp() : nanogui::Screen(Vector2i(400, 400), "") { auto...
Scoped tasks
I would love to be able to spawn non-`'static` tasks into the Tokio runtime, like so: ```Rust let local_data = LocalData::new(); let result = runtime.block_on_scoped(|scope| { let future_result = scope.spawn(async...
Memory leaks are reported by valgrind on Redhat, having the same size as allocated arrays. It turns out that the __gc metamethod is not being called. Compile flags are: export...
Valgrind reports an invalid read when loading shared object files. This seems to be independent of any lunar functions. Compile flags are: export CFLAGS = -Wall -O2 -fPIC export SO...