Add vecr::replace blend mode

This commit is contained in:
Nikita Lisitsa 2024-06-22 01:16:29 +03:00
parent 17e23e41d4
commit b8ad66732a

View file

@ -19,4 +19,9 @@ namespace psemek::vecr
return dst + src;
};
constexpr auto replace = [](gfx::color_4f const &, gfx::color_4f const & src)
{
return src;
};
}