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
10 lines
257 B
C++
10 lines
257 B
C++
#pragma once
|
|
|
|
#include "gx.hpp"
|
|
|
|
namespace aurora::gfx::gx {
|
|
ShaderInfo build_shader_info(const ShaderConfig& config) noexcept;
|
|
Range build_uniform(const ShaderInfo& info) noexcept;
|
|
u8 color_channel(GXChannelID id) noexcept;
|
|
}; // namespace aurora::gfx::gx
|