mirror of
https://github.com/encounter/aurora.git
synced 2025-07-21 04:25:56 +00:00
15 lines
274 B
C++
15 lines
274 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) -> DisplayListResult;
|
|
}; // namespace aurora::gfx::gx
|