supereight
|
Functions | |
static RGB | blend (const RGB a, const RGB b, const float alpha) |
Blend colors a and b based on the value of alpha . | |
static RGBA | blend (const RGBA a, const RGBA b, const float alpha) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
Blend colors a
and b
based on the value of alpha
.
Returns per-channel alpha * a + (1 - alpha) * b
. The value of alpha must be in the range [0, 1] inclusive.
a
and b
while keeping the same alpha
is not guaranteed to produce the same result.