Images 💾

Last commit ⭐

commit 9f50ad9208995e0fe9ed4c0ca38352933580ed56
Author:     Idan Horowitz <idan.horowitz@gmail.com>
AuthorDate: Sat Feb 17 19:20:48 2024 +0200
Commit:     Tim Flynn <trflynn89@pm.me>
CommitDate: Sat Feb 17 15:39:46 2024 -0500

    LibGfx/ICC: Stop allocating a vector on each call to lerp_nd
    
    While all callers of lerp_nd created a Vector with inline_capacity of 4
    to ensure no heap allocation will take place for most inputs, lerp_nd
    requested a reference to a Vector with 0 inline_capacity, which meant a
    new vector was allocated on each call.