lots of functions made static (some had to be moved)
This commit is contained in:
parent
463564076f
commit
3d15a468cd
11 changed files with 884 additions and 916 deletions
11
src/pixels.h
11
src/pixels.h
|
|
@ -32,18 +32,7 @@
|
|||
|
||||
#include "SDL.h"
|
||||
|
||||
void putpixel8(SDL_Surface * surface, int x, int y, Uint32 pixel);
|
||||
void putpixel16(SDL_Surface * surface, int x, int y, Uint32 pixel);
|
||||
void putpixel24(SDL_Surface * surface, int x, int y, Uint32 pixel);
|
||||
void putpixel32(SDL_Surface * surface, int x, int y, Uint32 pixel);
|
||||
|
||||
extern void (*putpixels[]) (SDL_Surface *, int, int, Uint32);
|
||||
|
||||
Uint32 getpixel8(SDL_Surface * surface, int x, int y);
|
||||
Uint32 getpixel16(SDL_Surface * surface, int x, int y);
|
||||
Uint32 getpixel24(SDL_Surface * surface, int x, int y);
|
||||
Uint32 getpixel32(SDL_Surface * surface, int x, int y);
|
||||
|
||||
extern Uint32(*getpixels[]) (SDL_Surface *, int, int);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue