diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-08-31 09:06:52 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-08-31 09:06:52 -0700 |
commit | 9992253bd3a56981ccc2c3992b2057348be99ae3 (patch) | |
tree | 96503335c575594bcbf78aa6375ad005f5b0a826 | |
parent | 65e1fc57a3d5fbea49474ed37e7f641467ba7a35 (diff) |
vcr: update stale comment about layer count
8 layers is no longer supported as a future expansion path...
-rw-r--r-- | src/vcr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -145,7 +145,7 @@ typedef struct vcr_t { } xlib; #endif /* USE_XLIB */ struct { - uint8_t *bits; /* .pitch * height bytes are used to represent the coverage status of up to 8 layers */ + uint8_t *bits; /* .pitch * height bytes are used to represent the coverage status of up to 4 layers (was 8 until nibbles happened) */ uint8_t *tmp; /* .pitch * VCR_ROW_HEIGHT bytes for a row's worth of temporary storage */ int pitch; /* "pitch" of mem surface in bytes, which is half the width rounded up to an even number divisible by two. */ } mem; |