Imager.sPixel._GetAlpha C# (CSharp) Method

_GetAlpha() private static method

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