Roman Sandu
Roman Sandu
No, NBT explorer does not support "external chunks", as in those that are too big and are stored separately from the region file in an auxiliary .mcс file. As far...
I would really like this feature to be implemented in one way or another. I want to load images asynchronously via iocp/io_uring, and that means that providing a function that...
@syoyo This is a nice feature, but it only covers deferred image parsing, not file loading. I want to be able to use custom low level (async) IO with the...
@AnujYamdagni thanks for not abandoning this project! This issue needs some design discussion before a PR can be created. 1) The signature change for mtx.lock would be an API break,...
Yes and no. I figured out a hacky way to use async_scope, but I am not happy with it. The use case is as follows: The main event loop needs...
This `static_scope` idea sounds kid of good for my case, but I see 2 issues with it: 1) N cannot be set at runtime (e.g. from a config file). 2)...
@kirkshoop I've sketched up a simple locking implementation of static_scope here in case you are interested, so far works like a charm for me. (please ignore the poor code quality,...
@kirkshoop not exactly, the `wake_one` method of `OpParkingLot` works kind of like `std::condition_variable`'s `wait`, it takes a locked `unique_lock`, tries to grab a task, unlocks it, and only then does...
How does this relate to #66? Also, any chance of this getting some love in the nearest future? My hope is that one day unifex will have one single io_context...
AFAIK nbody is an example of compute capabilities usage, while I am more interested in rendering capabilities of vulkan. A good example of what I am interested in is this:...