Go to the documentation of this file.
12 #ifndef BLITTER_32BPP_ANIM_HPP
13 #define BLITTER_32BPP_ANIM_HPP
40 void SetPixel(
void *video,
int x,
int y, uint8 colour);
41 void DrawRect(
void *video,
int width,
int height, uint8 colour);
42 void CopyFromBuffer(
void *video,
const void *src,
int width,
int height);
43 void CopyToBuffer(
const void *video,
void *dst,
int width,
int height);
44 void ScrollBuffer(
void *video,
int &left,
int &top,
int &width,
int &height,
int scroll_x,
int scroll_y);
49 const char *
GetName() {
return "32bpp-anim"; }