Zack Buhman 54f09bad01 ta_fifo_polygon_converter: properly calculate ta_next_opb_offset
The main issue with the previous code:

  constexpr uint32_t tiles = (640 / 32) * (320 / 32);

Should have been:

  constexpr uint32_t tiles = (640 / 32) * (480 / 32);

The consequence of this is some OPBs were being overwritten by
TA_NEXT_OPB, causing corruption (missing triangles, incomplete
drawings) in some tiles.
2023-12-25 21:59:26 +08:00
..
2023-12-17 02:03:42 +08:00
2023-12-25 00:54:54 +08:00
2023-12-17 17:04:34 +08:00
2023-12-12 21:50:39 +08:00
2023-12-24 16:24:27 +08:00