17#ifndef LIBDRAGON_RDPQ_ATTACH_H
18#define LIBDRAGON_RDPQ_ATTACH_H
Generic color structure.
Definition graphics.h:52
void __rdpq_clear(const color_t *clr)
Like rdpq_clear, but with optional fill color configuration.
Definition rdpq_attach.c:88
void __rdpq_clear_z(const uint16_t *z)
Like rdpq_clear_z, but with optional fill z value configuration.
Definition rdpq_attach.c:101
void rdpq_clear_z(uint16_t z)
Reset the current Z buffer to a given value.
Definition rdpq_attach.h:113
void rdpq_detach_cb(void(*cb)(void *), void *arg)
Detach the RDP from the current surface, and call a callback when the RDP has finished drawing to it.
Definition rdpq_attach.c:123
void rdpq_detach_wait(void)
Detach the RDP from the current surface, waiting for RDP to finish drawing.
Definition rdpq_attach.h:175
void rdpq_clear(color_t color)
Clear the current render target with the specified color.
Definition rdpq_attach.h:88
void rdpq_attach(const surface_t *surf_color, const surface_t *surf_z)
Attach the RDP to a color surface (and optionally a Z buffer)
Definition rdpq_attach.c:76
void rdpq_detach_show(void)
Detach the RDP from the current framebuffer, and show it on screen.
Definition rdpq_attach.c:131
void rdpq_detach(void)
Detach the RDP from the current surface, and restore the previous one.
Definition rdpq_attach.h:137
void rdpq_attach_clear(const surface_t *surf_color, const surface_t *surf_z)
Attach the RDP to a surface and clear it.
Definition rdpq_attach.c:82
bool rdpq_is_attached(void)
Check if the RDP is currently attached to a surface.
Definition rdpq_attach.c:22
void rspq_wait(void)
Wait until all commands in the queue have been executed by RSP.
Definition rspq.c:1277
A surface buffer for graphics.
Definition surface.h:138