mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-03 11:00:16 -04:00
d_stage linked and one function in m_do_ext matched (#2272)
This commit is contained in:
@@ -99,6 +99,10 @@ volatile PPCWGPipe GXWGFifo AT_ADDRESS(GXFIFO_ADDR);
|
||||
GX_XF_LOAD_REG_HDR(cmd); \
|
||||
}
|
||||
|
||||
static inline void GXNormal1x16(const u16 x) {
|
||||
GXWGFifo.u16 = x;
|
||||
}
|
||||
|
||||
static inline void GXPosition3f32(const f32 x, const f32 y, const f32 z) {
|
||||
GXWGFifo.f32 = x;
|
||||
GXWGFifo.f32 = y;
|
||||
@@ -145,6 +149,10 @@ static inline void GXTexCoord1x8(const u8 s) {
|
||||
GXWGFifo.u8 = s;
|
||||
}
|
||||
|
||||
static inline void GXTexCoord1x16(const u16 s) {
|
||||
GXWGFifo.u16 = s;
|
||||
}
|
||||
|
||||
static inline void GXPosition2u16(const u16 x, const u16 y) {
|
||||
GXWGFifo.u16 = x;
|
||||
GXWGFifo.u16 = y;
|
||||
|
||||
Reference in New Issue
Block a user