Files
tp/include/dolphin/gx/GXDisplayList.h
T

13 lines
251 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef GXDISPLAYLIST_H
#define GXDISPLAYLIST_H
#include "dolphin/types.h"
2021-05-10 08:54:07 -07:00
extern "C" {
void GXBeginDisplayList(void* list, u32 capacity);
2021-05-10 08:54:07 -07:00
void GXEndDisplayList(void);
void GXCallDisplayList(void* list, u32 nbytes);
2021-05-10 08:54:07 -07:00
};
2021-03-28 22:49:05 +02:00
#endif /* GXDISPLAYLIST_H */