diff options
author | Even Rouault <even.rouault@spatialys.com> | 2023-05-16 17:40:05 +0000 |
---|---|---|
committer | Even Rouault <even.rouault@spatialys.com> | 2023-05-16 17:40:05 +0000 |
commit | a0a18437d669bc30f91bfada555417903fee65b5 (patch) | |
tree | b084380d5f27e36024ca3efc1ff66682da1a5c08 /doc/internals.rst | |
parent | cea60470546fcb8bc1bb937512485aae15367b5d (diff) | |
parent | 0dabdfe85732147d1c8d6016e8c3e40522104568 (diff) | |
download | libtiff-git-master.tar.gz |
Hardcode HOST_FILLORDER to FILLORDER_LSB2MSB, and make 'H' flag of TIFFOpen()...
See merge request libtiff/libtiff!488
Diffstat (limited to 'doc/internals.rst')
-rw-r--r-- | doc/internals.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/internals.rst b/doc/internals.rst index 86014d9f..7ea1b5e5 100644 --- a/doc/internals.rst +++ b/doc/internals.rst @@ -189,11 +189,9 @@ as possible in two files: :file:`tiffcomp.h` and operating system-specific routines to do I/O and I/O-related operations. The UNIX (:file:`tif_unix.c`) code has had the most use. -Native CPU byte order is determined on the fly by -the library and does not need to be specified. -The :c:macro:`HOST_FILLORDER` and :c:macro:`HOST_BIGENDIAN` -definitions are not currently used, but may be employed by -codecs for optimization purposes. +Native CPU byte order is determined through the :c:macro:`WORDS_BIGENDIAN` +definition, which must be set to the appropriate value in :file:`tif_config.h` +by the build system. The following defines control general portability: |