From 2021cdfca29dc5c98e570a674ac97f92f47a1129 Mon Sep 17 00:00:00 2001 From: spicyjpeg Date: Thu, 11 May 2023 23:08:11 +0200 Subject: Add GPU IRQ variants of all display list APIs --- libpsn00b/include/psxgpu.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libpsn00b/include') diff --git a/libpsn00b/include/psxgpu.h b/libpsn00b/include/psxgpu.h index 2e9e4eb..d7f1ad5 100644 --- a/libpsn00b/include/psxgpu.h +++ b/libpsn00b/include/psxgpu.h @@ -606,10 +606,15 @@ void MoveImage2(const RECT *rect, int x, int y); void ClearOTagR(uint32_t *ot, size_t length); void ClearOTag(uint32_t *ot, size_t length); int DrawOTag(const uint32_t *ot); +int DrawOTagIRQ(const uint32_t *ot); int DrawOTagEnv(const uint32_t *ot, DRAWENV *env); +int DrawOTagEnvIRQ(const uint32_t *ot, DRAWENV *env); void DrawOTag2(const uint32_t *ot); +void DrawOTagIRQ2(const uint32_t *ot); int DrawBuffer(const uint32_t *buf, size_t length); +int DrawBufferIRQ(const uint32_t *buf, size_t length); void DrawBuffer2(const uint32_t *buf, size_t length); +void DrawBufferIRQ2(const uint32_t *buf, size_t length); void DrawPrim(const uint32_t *pri); void AddPrim(uint32_t *ot, const void *pri); -- cgit v1.2.3