Added basic 2D video accelleration
[tpg/acess2.git] / Usermode / Applications / axwin2_src / WM / interface.c
1 /*
2  * Acess GUI (AxWin) Version 2
3  * By John Hodge (thePowersGang)
4  */
5 #include "common.h"
6
7 // === GLOBALS ==
8  int    giInterface_Width = 0;
9
10 // === CODE ===
11 void Interface_Render(void)
12 {
13         giInterface_Width = giScreenWidth/16;
14         
15         Video_FillRect(
16                 0, 0,
17                 giInterface_Width, giScreenHeight,
18                 0xDDDDDD);
19         
20         Video_Update();
21 }

UCC git Repository :: git.ucc.asn.au