From 4910c324597a7e6f4a8d7e2a75e921e235640c13 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Thu, 17 Oct 2019 19:08:17 -0500 Subject: [PATCH] Update JoeyLib Static Image Functions --- JoeyLib-Static-Image-Functions.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/JoeyLib-Static-Image-Functions.md b/JoeyLib-Static-Image-Functions.md index 1b395fa..eccb95f 100644 --- a/JoeyLib-Static-Image-Functions.md +++ b/JoeyLib-Static-Image-Functions.md @@ -32,4 +32,10 @@ bool jlStaLoad(jlStaT sta, char *filename); ```c bool jlStaSave(jlStaT *sta, char *filename); ``` -Saves the specified static image to disk as `filename`. Returns `true` on success, otherwise `false`. \ No newline at end of file +Saves the specified static image to disk as `filename`. Returns `true` on success, otherwise `false`. + +### jlStaSurfaceGet +```c +jlSurfaceT jlStaSurfaceGet(jlStaT *sta); +``` +Returns a drawing surface from a static image. Useful for creating off-screen drawing surfaces.