Update JoeyLib Static Image Functions

Scott Duensing 2019-10-17 19:08:17 -05:00
parent b7972cc3d2
commit 4910c32459

@ -32,4 +32,10 @@ bool jlStaLoad(jlStaT sta, char *filename);
```c ```c
bool jlStaSave(jlStaT *sta, char *filename); bool jlStaSave(jlStaT *sta, char *filename);
``` ```
Saves the specified static image to disk as `filename`. Returns `true` on success, otherwise `false`. 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.