diff options
author | Mike Pavone <pavone@retrodev.com> | 2019-04-03 00:17:46 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2019-04-03 00:17:46 -0700 |
commit | ba22649f113380e4f00f3e857084160267149c01 (patch) | |
tree | f912aa5e52c3bb866182a1d179a2a03604f50266 /vdp.h | |
parent | 49c6aa324bfb077f79792301e021949783f40aa4 (diff) | |
parent | 3e02b77f1b411e8170f68a6380c378362eef4074 (diff) |
Merge
Diffstat (limited to 'vdp.h')
-rw-r--r-- | vdp.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -163,9 +163,9 @@ typedef struct { system_header *system; //pointer to current line in framebuffer uint32_t *output; - uint32_t *done_output; //pointer to current framebuffer uint32_t *fb; + uint8_t *done_composite; uint32_t *debug_fbs[VDP_NUM_DEBUG_TYPES]; uint32_t output_pitch; uint32_t debug_fb_pitch[VDP_NUM_DEBUG_TYPES]; @@ -205,6 +205,7 @@ typedef struct { uint16_t test_port; //stores 2-bit palette + 4-bit palette index + priority for current sprite line uint8_t linebuf[LINEBUF_SIZE]; + uint8_t compositebuf[LINEBUF_SIZE]; uint8_t layer_debug_buf[LINEBUF_SIZE]; uint8_t hslot; //hcounter/2 uint8_t sprite_index; |