mirror of
https://github.com/encounter/aurora.git
synced 2025-07-29 16:35:36 +00:00
* Support making simple display lists on the fly and more data formats * Add a macro for GXCallDisplayListLE * Resolve conversations
15 lines
290 B
C++
15 lines
290 B
C++
#pragma once
|
|
|
|
#include "gx.hpp"
|
|
|
|
namespace aurora::gfx::gx {
|
|
struct DisplayListResult {
|
|
Range vertRange;
|
|
Range idxRange;
|
|
u32 numIndices;
|
|
GXVtxFmt fmt;
|
|
};
|
|
|
|
auto process_display_list(const u8* dlStart, u32 dlSize, bool bigEndian) -> DisplayListResult;
|
|
}; // namespace aurora::gfx::gx
|