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;
///