Function ClearVram: Difference between revisions

From Uzebox Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
|video modes = All
|video modes = All
|status      = Active
|status      = Active
|example =
}}


Example:
  SetTileTable(my_tile_set);
  SetTileTable(my_tile_set);
  ClearVram();
  ClearVram();
}}

Revision as of 20:26, 27 February 2009

Prototype

void ClearVram();

Description

Fills the entire VRAM with tile #0. Before calling this function, you must invoke SetTileTable() to specify the tile set to use.

Parameters

None

Returns

Void

Video Modes

All

Since

V1

Example:

SetTileTable(my_tile_set);
ClearVram();