Centralize buffer preparation and standardize placement

This commit is contained in:
Jack Zeal 2026-03-28 09:01:21 -07:00
parent 90e652a8a1
commit d80dd2470b
16 changed files with 251 additions and 431 deletions

View file

@ -74,8 +74,6 @@
* Assumes "bw" was defined externally
*/
#define PIXEL(x, y) (bw * y + x)
#define PIXELSIZED(x, y, size) (size * y + x)
#define PIXEL(x, y, size) (size * y + x)
#endif /* LABWC_MACROS_H */