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