c++ Programming Glossary: colorblend_buffer
How does photoshop blend two images together? http://stackoverflow.com/questions/5919663/how-does-photoshop-blend-two-images-together blending of all three channels using this macro #define ColorBlend_Buffer T A B M T 0 ChannelBlend_##M A 0 B 0 T 1 ChannelBlend_##M.. RGB color blend macros #define ColorBlend_Normal T A B ColorBlend_Buffer T A B Normal #define ColorBlend_Lighten T A B ColorBlend_Buffer.. T A B Normal #define ColorBlend_Lighten T A B ColorBlend_Buffer T A B Lighten #define ColorBlend_Darken T A B ColorBlend_Buffer..
|