function BlendRegEx(F, B, M: TColor32): TColor32;
procedure BlendMemEx(F: TColor32; var B: TColor32; M: TColor32);
Mixes a foreground color with the background color using alpha of the foreground color scaled by the master alpha value M.
SARGB = (M * FA) * FARGB + (1 – (M * FA)) * BARGB;
M is defined as TColor32 to avoid unnecessary type conversions, it must store only values in [0..255] range, the function does not perform range checking and the result in case M > 255 is not specified.
BlendRegEx takes parameters and produces the result operating on CPU registers.
BlendMemEx operates with the background color referenced by a memory address.
Using BlendMemEx is more efficient when blending/combining data to a bitmap since it excludes writing operation for transparent pixels and reading operation for opaque ones.
Note, that after using BlendEx functions, you have to call EMMS. Otherwise CPU will be unable to handle floating point instructions.
Color Types, Blend, Combine, EMMS, Merge, MergeEx
Copyright ©2000-2024 Alex Denisov and the Graphics32 Team - Graphics32 2.0 - Help file built on 18 Feb 2024