src/blitter/null.hpp
changeset 6948 d7d326482813
parent 6947 2e14760f63f9
child 6951 b24e0f108ede
equal deleted inserted replaced
6947:2e14760f63f9 6948:d7d326482813
    16 	/* virtual */ Sprite *Encode(SpriteLoader::Sprite *sprite, Blitter::AllocatorProc *allocator);
    16 	/* virtual */ Sprite *Encode(SpriteLoader::Sprite *sprite, Blitter::AllocatorProc *allocator);
    17 	/* virtual */ void *MoveTo(const void *video, int x, int y) { return NULL; };
    17 	/* virtual */ void *MoveTo(const void *video, int x, int y) { return NULL; };
    18 	/* virtual */ void SetPixel(void *video, int x, int y, uint8 color) {};
    18 	/* virtual */ void SetPixel(void *video, int x, int y, uint8 color) {};
    19 	/* virtual */ void SetPixelIfEmpty(void *video, int x, int y, uint8 color) {};
    19 	/* virtual */ void SetPixelIfEmpty(void *video, int x, int y, uint8 color) {};
    20 	/* virtual */ void DrawRect(void *video, int width, int height, uint8 color) {};
    20 	/* virtual */ void DrawRect(void *video, int width, int height, uint8 color) {};
       
    21 	/* 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) {};
    22 	/* virtual */ void CopyFromBuffer(void *video, const void *src, int width, int height, int src_pitch) {};
    22 	/* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height, int dst_pitch) {};
    23 	/* virtual */ void CopyToBuffer(const void *video, void *dst, int width, int height, int dst_pitch) {};
    23 	/* virtual */ void MoveBuffer(void *video_dst, const void *video_src, int width, int height) {};
    24 	/* virtual */ void MoveBuffer(void *video_dst, const void *video_src, int width, int height) {};
    24 	/* virtual */ int BufferSize(int width, int height) { return 0; };
    25 	/* virtual */ int BufferSize(int width, int height) { return 0; };
    25 };
    26 };