src/blitter/null.hpp
changeset 6947 2e14760f63f9
parent 6940 32f30eb820f0
child 6948 d7d326482813
equal deleted inserted replaced
6946:a48b23f1cc8a 6947:2e14760f63f9
    15 	/* virtual */ void DrawColorMappingRect(void *dst, int width, int height, int pal) {};
    15 	/* virtual */ void DrawColorMappingRect(void *dst, int width, int height, int pal) {};
    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 SetHorizontalLine(void *video, int width, uint8 color) {};
    20 	/* virtual */ void DrawRect(void *video, int width, int 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, int src_pitch) {};
    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, int dst_pitch) {};
    23 	/* virtual */ void MoveBuffer(void *video_dst, const void *video_src, int width, int height) {};
    23 	/* virtual */ void MoveBuffer(void *video_dst, const void *video_src, int width, int height) {};
    24 	/* virtual */ int BufferSize(int width, int height) { return 0; };
    24 	/* virtual */ int BufferSize(int width, int height) { return 0; };
    25 };
    25 };