(svn r10206) -Codechange: more moving things to blitter-layer: ScrollBuffer

This commit is contained in:
truelight
2007-06-18 20:08:21 +00:00
parent 49220cc6f1
commit 26e9b5ca5f
7 changed files with 120 additions and 47 deletions

View File

@@ -22,6 +22,7 @@ public:
/* virtual */ void CopyFromBuffer(void *video, const void *src, int width, int height, int src_pitch) {};
/* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height, int dst_pitch) {};
/* virtual */ void MoveBuffer(void *video_dst, const void *video_src, int width, int height) {};
/* virtual */ void ScrollBuffer(void *video, int &left, int &top, int &width, int &height, int scroll_x, int scroll_y) {};
/* virtual */ int BufferSize(int width, int height) { return 0; };
};