mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-07 11:27:26 -04:00
317fb95c27
Fixes a stub call because we couldn't pass the BE form to the API
23 lines
418 B
C++
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);
|
|
};
|