summaryrefslogtreecommitdiff
path: root/shared-bindings/bitmaptools
diff options
context:
space:
mode:
authorKevin Matocha <kmatocha@icloud.com>2021-03-16 10:42:46 -0500
committerKevin Matocha <kmatocha@icloud.com>2021-03-16 10:42:46 -0500
commit870dadc85adce4f10fa57dda1d11dda48b25dbc1 (patch)
tree9a4e0ef300528de2192e690d8bbbb52a33c63e06 /shared-bindings/bitmaptools
parenta367e84ceae8e01176da46ee7f43d223376a56c0 (diff)
update more docstrings
Diffstat (limited to 'shared-bindings/bitmaptools')
-rw-r--r--shared-bindings/bitmaptools/__init__.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared-bindings/bitmaptools/__init__.c b/shared-bindings/bitmaptools/__init__.c
index af30bc9aa..d812af870 100644
--- a/shared-bindings/bitmaptools/__init__.c
+++ b/shared-bindings/bitmaptools/__init__.c
@@ -440,7 +440,8 @@ MP_DEFINE_CONST_FUN_OBJ_KW(bitmaptools_arrayblit_obj, 0, bitmaptools_arrayblit);
//|
//| The file must be positioned so that it consists of ``bitmap.height`` rows of pixel data, where each row is the smallest multiple of ``element_size`` bytes that can hold ``bitmap.width`` pixels.
//|
-//| The bytes in an element can be optionally swapped, and the pixels in an element can be reversed.
+//| The bytes in an element can be optionally swapped, and the pixels in an element can be reversed. Also, the
+//| row loading direction can be reversed, which may be requires for loading certain bitmap files.
//|
//| This function doesn't parse image headers, but is useful to speed up loading of uncompressed image formats such as PCF glyph data.
//|