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