예제 #1
0
        private void DecodeFooter(TGADecodeContext dc)
        {
            if (dc.Stage < TGADecodeStage.HeaderDecoded)
            {
                this.DecodeHeader();
            }

            dc.Stage = TGADecodeStage.FooterDecoded;
        }
예제 #2
0
 /// <summary>
 /// Initializes the decoding context.
 /// </summary>
 internal void InitContext()
 {
     this.context       = new TGADecodeContext(this.Bitstream);
     this.context.Stage = TGADecodeStage.Initialized;
 }
예제 #3
0
파일: TGADecoder.cs 프로젝트: eriser/nsynth
        private void DecodeFooter(TGADecodeContext dc)
        {
            if (dc.Stage < TGADecodeStage.HeaderDecoded)
                this.DecodeHeader();

            dc.Stage = TGADecodeStage.FooterDecoded;
        }
예제 #4
0
파일: TGADecoder.cs 프로젝트: eriser/nsynth
 /// <summary>
 /// Initializes the decoding context.
 /// </summary>
 internal void InitContext()
 {
     this.context = new TGADecodeContext(this.Bitstream);
     this.context.Stage = TGADecodeStage.Initialized;
 }