Files
dusklight/include/dusk/endian_gx.hpp
T
PJB3005 317fb95c27 Make GXVtxDescList and GXVtxAttrFmtList not be behind BE
Fixes a stub call because we couldn't pass the BE form to the API
2026-02-27 01:04:44 +01: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);
};