summaryrefslogtreecommitdiff
path: root/include/dolphin
diff options
context:
space:
mode:
Diffstat (limited to 'include/dolphin')
-rw-r--r--include/dolphin/gx/GX.h1
-rw-r--r--include/dolphin/gx/GXDisplayList.h6
2 files changed, 7 insertions, 0 deletions
diff --git a/include/dolphin/gx/GX.h b/include/dolphin/gx/GX.h
index c07a96f247..ad2d4d99ed 100644
--- a/include/dolphin/gx/GX.h
+++ b/include/dolphin/gx/GX.h
@@ -1,6 +1,7 @@
#ifndef GX_H_
#define GX_H_
+#include "dolphin/gx/GXDisplayList.h"
#include "dolphin/gx/GXTexture.h"
#include "dolphin/types.h"
diff --git a/include/dolphin/gx/GXDisplayList.h b/include/dolphin/gx/GXDisplayList.h
index db5429fa95..abc3a045a2 100644
--- a/include/dolphin/gx/GXDisplayList.h
+++ b/include/dolphin/gx/GXDisplayList.h
@@ -3,4 +3,10 @@
#include "dolphin/types.h"
+extern "C" {
+void GXBeginDisplayList(void* pDL, u32 capacity);
+void GXEndDisplayList(void);
+void GXCallDisplayList(const void* pDL, u32 size);
+};
+
#endif /* GXDISPLAYLIST_H */