diff options
| author | Strangerke | 2012-06-17 19:39:58 +0200 | 
|---|---|---|
| committer | Strangerke | 2012-06-17 19:39:58 +0200 | 
| commit | a46b06a587cc0b5e5767b55ba0d56264a8078f0c (patch) | |
| tree | 3b563375a88503de21660d0f123e8e5df895d4a3 /engines/tony/gfxcore.h | |
| parent | 31c0210f22bb4cc839abb9fa59539fd97d3a74f6 (diff) | |
| download | scummvm-rg350-a46b06a587cc0b5e5767b55ba0d56264a8078f0c.tar.gz scummvm-rg350-a46b06a587cc0b5e5767b55ba0d56264a8078f0c.tar.bz2 scummvm-rg350-a46b06a587cc0b5e5767b55ba0d56264a8078f0c.zip  | |
TONY: Move functions comment to doxygen format
Diffstat (limited to 'engines/tony/gfxcore.h')
| -rw-r--r-- | engines/tony/gfxcore.h | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/tony/gfxcore.h b/engines/tony/gfxcore.h index bec33183c6..3b8384f614 100644 --- a/engines/tony/gfxcore.h +++ b/engines/tony/gfxcore.h @@ -324,7 +324,7 @@ public:  	RMGfxSourceBuffer16(int dimx, int dimy, bool bUseDDraw = false);  	virtual ~RMGfxSourceBuffer16(); -	// Initialisation +	// Initialization  	void create(int dimx, int dimy, bool bUseDDraw = false);  	int getBpp(); @@ -369,7 +369,7 @@ public:  	RMGfxSourceBuffer8(int dimx, int dimy, bool bUseDDraw = false);  	virtual ~RMGfxSourceBuffer8(); -	// Initialisation +	// Initialization  	void create(int dimx, int dimy, bool bUseDDraw = false);  	int getBpp(); @@ -414,7 +414,7 @@ protected:  	void compressRLE(void);  protected: -	// Overriding initialisation methods +	// Overriding initialization methods  	virtual void prepareImage(void);  	virtual void preparePalette(void); @@ -422,7 +422,7 @@ public:  	RMGfxSourceBuffer8RLE();  	virtual ~RMGfxSourceBuffer8RLE(); -	// Overload of the initialisation method +	// Overload of the initialization method  	virtual void init(RMDataStream &ds, int dimx, int dimy, bool bLoadPalette = false);  	virtual int init(const byte *buf, int dimx, int dimy, bool bLoadPalette = false); @@ -505,7 +505,7 @@ protected:  public:  	virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim); -	// Overloaded initialisation methods +	// Overloaded initialization methods  	virtual void init(RMDataStream &ds, int dimx, int dimy, bool bLoadPalette = false);  	virtual int init(const byte *buf, int dimx, int dimy, bool bLoadPalette = false); @@ -519,7 +519,7 @@ protected:  public:  	virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim); -	// Overloaded initialisation methods +	// Overloaded initialization methods  	virtual void init(RMDataStream &ds, int dimx, int dimy, bool bLoadPalette = false);  	virtual int init(byte *buf, int dimx, int dimy, bool bLoadPalette = false); @@ -535,7 +535,7 @@ public:  	RMGfxSourceBuffer4();  	RMGfxSourceBuffer4(int dimx, int dimy, bool bUseDDraw = false); -	// Initialisation +	// Initialization  	void create(int dimx, int dimy, bool bUseDDraw = false);  	int getBpp();  | 
