# HG changeset patch # User Matti Hamalainen # Date 1528843222 -10800 # Node ID 52e90130453bc8b1412c0c3283f2c308b5084c9f # Parent 86d10d5d49157e219644dfd40f2442ee66684282 Add descriptive comments to some of RLE decoder flags that were missing "documentation". diff -r 86d10d5d4915 -r 52e90130453b tools/lib64gfx.h --- a/tools/lib64gfx.h Wed Jun 13 01:39:06 2018 +0300 +++ b/tools/lib64gfx.h Wed Jun 13 01:40:22 2018 +0300 @@ -240,9 +240,9 @@ DM_RLE_ORDER_2 = 0x0010, // Order: , , DM_RLE_ORDER_MASK = 0x00f0, - DM_RLE_BACKWARDS_INPUT = 0x0100, - DM_RLE_BACKWARDS_OUTPUT = 0x0200, - DM_RLE_ZERO_COUNT_MAX = 0x0400, + DM_RLE_BACKWARDS_INPUT = 0x0100, // Input is read backwards + DM_RLE_BACKWARDS_OUTPUT = 0x0200, // Output is written backwards + DM_RLE_ZERO_COUNT_MAX = 0x0400, // Zero "count" / run length value is max run (2^8, 2^16) DM_OUT_CROP_NONE = 0x0000, DM_OUT_CROP_START = 0x1000,