GetRValue function Null safety
- int rgb
Retrieves an intensity value for the red component of a red, green, blue (RGB) value.
Implementation
//
// #define GetRValue(rgb) (LOBYTE(rgb))
int GetRValue(int rgb) => LOBYTE(rgb);
Retrieves an intensity value for the red component of a red, green, blue (RGB) value.
//
// #define GetRValue(rgb) (LOBYTE(rgb))
int GetRValue(int rgb) => LOBYTE(rgb);