Update JoeyLib Static Image Functions
parent
b7972cc3d2
commit
4910c32459
1 changed files with 7 additions and 1 deletions
|
@ -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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue