Descent3/bitmap
Chris Sarbora 3da53e567f
Programmatically replace all __LINUX__ with POSIX
Steps:
```sh
srcs=$(mktemp)
find . -name "*.cpp" -or -name "*.c" -or -name "*.h" -or -name "*.hpp" -or -name "*.cc" -or -name "*.hh" > $srcs
xargs sed -i 's/ifndef __LINUX__/if !defined(POSIX)/' < $srcs
xargs sed -i 's/ifdef __LINUX__/if defined(POSIX)/' < $srcs
xargs sed -i 's/defined(__LINUX__)/defined(POSIX)/' < $srcs
```
2024-07-12 18:11:54 -05:00
..
bitmain.cpp Convert bm_SaveFileBitmap() and SaveVClip() to std::fs::path 2024-07-05 01:50:57 +03:00
bumpmap.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
CMakeLists.txt Isolate misc module 2024-06-27 01:26:35 +03:00
iff.cpp Create an overloaded cf_ReadInt and cf_ReadShort that takes a bool to indicate little endian reads. 2024-07-02 18:34:45 -06:00
iff.h
lightmap.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
NewBitmap.cpp save screenshots as PNG 2024-05-09 22:46:17 +01:00
NewBitmap.h save screenshots as PNG 2024-05-09 22:46:17 +01:00
pcx.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
tga.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00