Levi Willrich

Results 22 comments of Levi Willrich

NOTE: I introduce a function visual_timer_cycle into this. I think it's conceptually sound (a global timer used to allow animation without state), and the implementation is fine, but I would...

I think we should globally cache solid color shaders because there's likely to be a lot of them that are mostly identical. The other shaders all depend on width and...

although checking again it appears the solid color shaders are also by far the least computationally expensive, to the point where caching it is probably not even worth it.

https://github.com/LiveSplit/LiveSplitOne/pull/666

this is a very barebones start at software rendering. i havent touched the font stuff yet, and there's also the problem of the draggable layout. but it's a start

it took me like 10 minutes to throw together its all good. The canvas stuff still has the problem of having 2 seperate render systems to keep in sync, but...

The html renderer's performance concerns are less important in the layout editor since we can turn the refresh rate way down. nobody's editing their layout mid run (citation needed). The...

This was already done as of June 2020. See `src/component/title/mod.rs` line 234;

Ah. I might take a look at it then.