From 102df88c71df6e447e377734f94acad1ed5503cd Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Thu, 6 Sep 2018 00:37:40 +0000 Subject: [PATCH] scott created page: JoeyLib Display Functions --- JoeyLib-Display-Functions.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 JoeyLib-Display-Functions.md diff --git a/JoeyLib-Display-Functions.md b/JoeyLib-Display-Functions.md new file mode 100644 index 0000000..1493113 --- /dev/null +++ b/JoeyLib-Display-Functions.md @@ -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. \ No newline at end of file