summaryrefslogtreecommitdiff
path: root/src/blitter/null.cpp
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-06-13 10:31:40 +0000
committertruelight <truelight@openttd.org>2007-06-13 10:31:40 +0000
commite7221d1fa93229b8a56a84155bf20930c7b5d2aa (patch)
tree98a70aa7bd079e3d0a506b21ae4262f53fdd811c /src/blitter/null.cpp
parent97b74fe4f205fc65fbc2e3933fd7cb4d08e8df33 (diff)
downloadopenttd-e7221d1fa93229b8a56a84155bf20930c7b5d2aa.tar.xz
(svn r10132) -Codechange: split out the last direct video-buffer read access to the blitter-layer
-Add: added a new renderer and blitter to make room for some optimized bpp -Fix: fill the alpha channel in the grf-spriteloader
Diffstat (limited to 'src/blitter/null.cpp')
-rw-r--r--src/blitter/null.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/blitter/null.cpp b/src/blitter/null.cpp
index 1aad792a1..ae1133b20 100644
--- a/src/blitter/null.cpp
+++ b/src/blitter/null.cpp
@@ -10,6 +10,10 @@ void Blitter_Null::Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel
{
}
+void Blitter_Null::DrawColorMappingRect(void *dst, int width, int height, int pal)
+{
+}
+
Sprite *Blitter_Null::Encode(SpriteLoader::Sprite *sprite, Blitter::AllocatorProc *allocator)
{
Sprite *dest_sprite;