Bdisp_ShapeToVRAM16C

Synopsis #

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

Draws a shape to VRAM.

Parameters #

  • shape - shape to draw to screen

    struct display_shape {
        int dx;
        int dy;
        int wx;
        int wy;
        int color;
        void* saved;
    };
    
  • color - indexed color (like PrintXY) of the shape.