1SDL_UnlockSurface(3) SDL API Reference SDL_UnlockSurface(3)
2
3
4
6 SDL_UnlockSurface - Unlocks a previously locked surface.
7
9 #include "SDL.h"
10
11 void SDL_UnlockSurface(SDL_Surface *surface);
12
14 Surfaces that were previously locked using SDL_LockSurface must be
15 unlocked with SDL_UnlockSurface. Surfaces should be unlocked as soon as
16 possible.
17
18 It should be noted that since 1.1.8, surface locks are recursive. See
19 SDL_LockSurface.
20
22 SDL_LockSurface
23
24
25
26SDL Tue 11 Sep 2001, 23:01 SDL_UnlockSurface(3)