src/blitter/32bpp_base.hpp
changeset 6985 d50d59dca7c1
parent 6969 3d6722f0e3bd
child 7552 56aa62dba204
equal deleted inserted replaced
6984:f3fb85f867f7 6985:d50d59dca7c1
    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