Example #1
0
        public TGADecodeContext(Stream bitstream)
        {
            if (bitstream == null)
            {
                throw EX.Create(EXCode.ArgumentNull, "bitstream");
            }

            this.bitstream = bitstream;
            this.header    = new TGABitstreamHeader();
        }