~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/blitter/32bpp_simple.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman, Jordi Mallach
  • Date: 2009-04-15 18:22:10 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415182210-22ktb8kdbp2tf3bm
[ Matthijs Kooijman ]
* New upstream release.
* Remove Debian specific desktop file, upstream provides one now. 
* Add debian/watch file.

[ Jordi Mallach ]
* Bump Standards-Version to 3.8.1, with no changes required.
* Move to debhelper compat 7. Bump Build-Depends accordingly.
* Use dh_prep.
* Add "set -e" to config script.
* Remove a few extra doc files that get installed by upstream Makefile.
* Add more complete copyright information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: 32bpp_simple.hpp 10245 2007-06-21 13:56:59Z truelight $ */
 
1
/* $Id: 32bpp_simple.hpp 15428 2009-02-09 02:57:15Z rubidium $ */
2
2
 
3
 
/** @file 32bpp_simple.hpp */
 
3
/** @file 32bpp_simple.hpp Simple 32 bpp blitter. */
4
4
 
5
5
#ifndef BLITTER_32BPP_SIMPLE_HPP
6
6
#define BLITTER_32BPP_SIMPLE_HPP
11
11
class Blitter_32bppSimple : public Blitter_32bppBase {
12
12
public:
13
13
        /* virtual */ void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom);
14
 
        /* virtual */ void DrawColorMappingRect(void *dst, int width, int height, int pal);
 
14
        /* virtual */ void DrawColourMappingRect(void *dst, int width, int height, int pal);
15
15
        /* virtual */ Sprite *Encode(SpriteLoader::Sprite *sprite, Blitter::AllocatorProc *allocator);
16
16
 
17
17
        /* virtual */ const char *GetName() { return "32bpp-simple"; }