Go to the documentation of this file.
12 #ifndef BLITTER_8BPP_BASE_HPP
13 #define BLITTER_8BPP_BASE_HPP
22 void *
MoveTo(
void *video,
int x,
int y);
23 void SetPixel(
void *video,
int x,
int y, uint8 colour);
24 void DrawRect(
void *video,
int width,
int height, uint8 colour);
25 void CopyFromBuffer(
void *video,
const void *src,
int width,
int height);
26 void CopyToBuffer(
const void *video,
void *dst,
int width,
int height);
27 void CopyImageToBuffer(
const void *video,
void *dst,
int width,
int height,
int dst_pitch);
28 void ScrollBuffer(
void *video,
int &left,
int &top,
int &width,
int &height,
int scroll_x,
int scroll_y);