Generates the display list that draws the sprite on the screen.
#include <sp.h> /* sp.h */
void spDraw(Sprite *sp)
This function constructs a display list starting at sp->next_dl that draws the sprite upon call into the frame buffer in the indicated way.
This display list is always terminated with a gSPEndDispalyList entry. If it reaches the end of the list, the sp->next_dl entry will be updated to point to the next entry.
The pointer to the start of this display list is returned.
At most, sp->ndisplist of display list entries are generated.
Set G_IM_SIZ_DD instead of G_IM_SIZ_4b for sp->bmsiz when using 64DD built-in font.
A source for the spDraw function is located in /usr/src/PR/libultra/sp for your reference.
mksprite
Chapter on Sprite in N64 Programming Manual
Revision History
1999/01/18 Added one sentence to the end of the Description.
1999/04/30 Changed Format