BImageViewer.BImage.PixelFormat.Read C# (CSharp) Method

Read() public method

public Read ( BinaryReader _R ) : void
_R System.IO.BinaryReader
return void
            public void Read( BinaryReader _R )
            {
                m_layout = (Layout) _R.ReadUInt32();
                m_type = (Type) _R.ReadUInt32();
                m_swizzle = (Swizzle) _R.ReadUInt32();
            }
BImage.PixelFormat