timesynk/engine/sdl/sdl_extra.h

9 lines
250 B
C

#ifndef SDL_EXTRA_H
#define SDL_EXTRA_H
SDL_Surface *SDL_ScaleSurface(SDL_Surface *surface, float scale_x, float scale_y);
Uint32 getpixel(SDL_Surface *surface, int x, int y);
void putpixel(SDL_Surface *surface, int x, int y, Uint32 pixel);
#endif