From ff38ee57538e569c5df57774171a7b1a2a276bb7 Mon Sep 17 00:00:00 2001 From: George Collins Date: Mon, 9 Oct 2017 22:24:28 +0100 Subject: [PATCH] Added summary tags for RLE8 constants --- src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs b/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs index 55d21cc47..f19e31887 100644 --- a/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs +++ b/src/ImageSharp/Formats/Bmp/BmpDecoderCore.cs @@ -29,9 +29,24 @@ namespace SixLabors.ImageSharp.Formats.Bmp /// private const int Rgb16BMask = 0x0000001F; + /// + /// RLE8 flag value that indicates following byte has special meaning + /// private const int RleCommand = 0x00; + + /// + /// RLE8 flag value marking end of a scan line + /// private const int RleEndOfLine = 0x00; + + /// + /// RLE8 flag value marking end of bitmap data + /// private const int RleEndOfBitmap = 0x01; + + /// + /// RLE8 flag value marking the start of [x,y] offset instruction + /// private const int RleDelta = 0x02; ///