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