Bdisp ShapeToDD

From WikiPrizm
Jump to navigationJump to search


Synopsis

Header: fxcg/display.h
Syscall index: 0x01C0
Function signature: void Bdisp_ShapeToDD(struct display_shape * shape, int color)

Draws a shape directly to the display, bypassing VRAM.

Parameters

  • shape - shape to draw
struct display_shape {
	int dx;
	int dy;
	int wx;
	int wy;
	int color;
	void* saved;
};

  • color - color of the shape.