Function FontFill

From Uzebox Wiki
Jump to navigation Jump to search
Prototype

void FontFill(int x,int y,int width,int height,int tile);

Description

Fill an arbitrary sized, rectangular region using the specified tile index from the font table.

Parameters
  • x,y: Top left corner of the region to fill.
  • width,height: Width and Height of the region to fill.
  • tile: Tile index used to fill the region.
Returns

Void

Video Modes

All

Since

V1

Example:

//fill the screen in mode 1 with 'A'
FontFill(0,0,39,27,'A');