Imager.sPixel._GetAlpha C# (CSharp) Méthode

_GetAlpha() private static méthode

Gets the value for alpha, hopefully the compiler inlines that.
private static _GetAlpha ( uint rgbBytes ) : byte
rgbBytes uint The pixel value.
Résultat byte
        private static byte _GetAlpha(uint rgbBytes)
        {
            return ((byte)(rgbBytes >> 24));
        }