src/blitter/8bpp_base.hpp
changeset 7481 699607d457a0
parent 7456 0c0636370335
child 10429 1b99254f9607
equal deleted inserted replaced
7480:d4d829c80c4f 7481:699607d457a0
    16 	/* virtual */ void *MoveTo(const void *video, int x, int y);
    16 	/* virtual */ void *MoveTo(const void *video, int x, int y);
    17 	/* virtual */ void SetPixel(void *video, int x, int y, uint8 color);
    17 	/* virtual */ void SetPixel(void *video, int x, int y, uint8 color);
    18 	/* virtual */ void SetPixelIfEmpty(void *video, int x, int y, uint8 color);
    18 	/* virtual */ void SetPixelIfEmpty(void *video, int x, int y, uint8 color);
    19 	/* virtual */ void DrawRect(void *video, int width, int height, uint8 color);
    19 	/* virtual */ void DrawRect(void *video, int width, int height, uint8 color);
    20 	/* virtual */ void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 color);
    20 	/* virtual */ void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8 color);
    21 	/* virtual */ void CopyFromBuffer(void *video, const void *src, int width, int height, int src_pitch);
    21 	/* virtual */ void CopyFromBuffer(void *video, const void *src, int width, int height);
    22 	/* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height, int dst_pitch);
    22 	/* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height);
    23 	/* virtual */ void MoveBuffer(void *video_dst, const void *video_src, int width, int height);
    23 	/* virtual */ void CopyImageToBuffer(const void *video, void *dst, int width, int height, int dst_pitch);
    24 	/* virtual */ void ScrollBuffer(void *video, int &left, int &top, int &width, int &height, int scroll_x, int scroll_y);
    24 	/* virtual */ void ScrollBuffer(void *video, int &left, int &top, int &width, int &height, int scroll_x, int scroll_y);
    25 	/* virtual */ int BufferSize(int width, int height);
    25 	/* virtual */ int BufferSize(int width, int height);
    26 	/* virtual */ void PaletteAnimate(uint start, uint count);
    26 	/* virtual */ void PaletteAnimate(uint start, uint count);
    27 	/* virtual */ Blitter::PaletteAnimation UsePaletteAnimation();
    27 	/* virtual */ Blitter::PaletteAnimation UsePaletteAnimation();
    28 };
    28 };