dreamcast/holly/ta_fifo_polygon_converter.hpp
Zack Buhman c5078cb030 example: add translucency example
The macaw_multipass example does not work on real hardware.
2023-12-14 20:57:44 +08:00

12 lines
383 B
C++

#pragma once
#include <cstdint>
void ta_polygon_converter_init(uint32_t opb_total_size, // total OPB size for all render passes
uint32_t ta_alloc);
void ta_polygon_converter_cont(uint32_t ol_base_offset,
uint32_t ta_alloc);
void ta_polygon_converter_transfer(volatile uint32_t * buf, uint32_t size);
void ta_wait_opaque_list();
void ta_wait_translucent_list();