Files
dusklight/include/helpers/endian_gx.hpp
T
Luke Street a6f059827b Game ABI / headers refactoring (#2215)
* Game ABI / headers refactoring

* Delete dusk/imgui.h
2026-07-14 19:24:08 -06:00

23 lines
418 B
C++

#pragma once
#include "dolphin/gx/GXStruct.h"
#include "endian.h"
template <>
struct BE<GXVtxDescList> {
BE<GXAttr> attr;
BE<GXAttrType> type;
static GXVtxDescList swap[[nodiscard]](GXVtxDescList val);
};
template <>
struct BE<GXVtxAttrFmtList> {
BE<GXAttr> attr;
BE<GXCompCnt> cnt;
BE<GXCompType> type;
u8 frac;
static GXVtxAttrFmtList swap[[nodiscard]](GXVtxAttrFmtList val);
};