What's everyone working on this week (46/2019)?

New week, new Rust! What are you folks up to?

I'm still trying to bring rendering time, but also e.g. temporary memory allocations down. Here an example from last week with the ambient occlusions algorithm:

Watch the first entry of Most Temporary Allocations and see below:

Basically the lowest part of the graph (in orange, left side) represents about 1 million temporary allocations which were prevented by just pointing into already allocated memory instead of copying parts of it ... unfortunately that can't always be done, but in this case it can ...

1 Like

I'm currently working on adding support for cameras (and other transformations) to Tetra. I recently switched to using vek as my vector math library, and I'm finding it pretty nice so far :slight_smile:

1 Like

Trying a principled approach to fix potential busy-looping and poll starvation problems in futures: ForEach, Fold, and similar stream combinators can run saturated without returning from poll · Issue #1957 · rust-lang/futures-rs · GitHub

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.