scott created page: JoeyLib Display Functions

Scott Duensing 2018-09-06 00:37:40 +00:00
parent 56106fdeff
commit 102df88c71

@ -0,0 +1,13 @@
*Display functions deal directly with the system display hardware.*
#### jlDisplayBorder
```c
void jlDisplayBorder(jlBorderColorsE color);
```
Specifies the border color to display. The actual color change does not take effect until the next frame is presented.
#### jlDisplayPresent
```c
void jlDisplayPresent(void);
```
Presents the current frame to the display. All drawing takes place off-screen. When the frame is ready to display, call `jlDisplayPresent()` to make it visible.