Update JoeyLib Static Image Functions

Scott Duensing 2018-09-06 01:25:14 +00:00
parent e3137a3c2e
commit cbc1db3081

@ -2,13 +2,13 @@
```c
bool jlStaCopy(jlStaT source, jlStaT target);
```
*(Note: This prototype isn't entirely accurate. No pointer crazyness is needed to pass the images into this function.)* Copies one loaded image to another. Memory allocation is handled for you.
*(Note: This prototype isn't entirely accurate. No pointer crazyness is needed to pass the images into this function.)* Copies one loaded image to another. Memory allocation is handled for you. Returns `true` on success, otherwise `false`.
#### jlStaCreate
```c
bool jlStaCreate(jlStaT sta);
```
*(Note: This prototype isn't entirely accurate. No pointer crazyness is needed to pass the image into this function.)* Creates a new static image from the current contents of the back buffer. Memory allocation is handled for you. Useful for special effects or taking screen shots.
*(Note: This prototype isn't entirely accurate. No pointer crazyness is needed to pass the image into this function.)* Creates a new static image from the current contents of the back buffer. Returns `true` on success, otherwise `false`. Memory allocation is handled for you. Useful for special effects or taking screen shots.
#### jlStaDisplay
```c