c++ Programming Glossary: clamptobyte
How to do alpha blend fast? http://stackoverflow.com/questions/1102692/how-to-do-alpha-blend-fast I want to do alpha blend using the following code. #define CLAMPTOBYTE color if color ~255 color BYTE color 31 else color BYTE color.. alpha 255 blue srcByteTop B alpha srcByte B 255 alpha 255 CLAMPTOBYTE red CLAMPTOBYTE green CLAMPTOBYTE blue resultByte R red resultByte.. srcByteTop B alpha srcByte B 255 alpha 255 CLAMPTOBYTE red CLAMPTOBYTE green CLAMPTOBYTE blue resultByte R red resultByte G green resultByte..
|