mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 02:27:49 +00:00
Rasterizer: Implement Inline2Memory Acceleration.
This commit is contained in:
parent
4a3a7673b7
commit
19270ae4e6
14 changed files with 122 additions and 6 deletions
|
@ -1557,7 +1557,8 @@ private:
|
|||
|
||||
static constexpr u32 null_cb_data = 0xFFFFFFFF;
|
||||
struct CBDataState {
|
||||
std::array<std::array<u32, 0x4000>, 16> buffer;
|
||||
static constexpr size_t inline_size = 0x8000;
|
||||
std::array<std::array<u32, inline_size>, 16> buffer;
|
||||
u32 current{null_cb_data};
|
||||
u32 id{null_cb_data};
|
||||
u32 start_pos{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue