1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00
GLideN64/RDP.h

22 lines
290 B
C
Raw Normal View History

#ifndef RDP_H
#define RDP_H
2014-10-07 10:59:54 +00:00
typedef struct
{
u32 w2, w3;
u32 cmd_ptr;
u32 cmd_cur;
u32 cmd_data[0x1000];
} RDPInfo;
extern RDPInfo RDP;
void RDP_Init();
2014-10-07 10:59:54 +00:00
void RDP_Half_1(u32 _c);
void RDP_ProcessRDPList();
void RDP_RepeatLastLoadBlock();
2014-11-01 15:07:07 +00:00
void RDP_SetScissor(u32 w0, u32 w1);
#endif