From 06bce68860696f67f0a0ac1e9682635081918801 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Thu, 2 Sep 2010 17:11:45 +0000 Subject: SWORD25: Comply to the code conventions for several classes svn-id: r53310 --- engines/sword25/gfx/dynamicbitmap.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'engines/sword25/gfx/dynamicbitmap.h') diff --git a/engines/sword25/gfx/dynamicbitmap.h b/engines/sword25/gfx/dynamicbitmap.h index 69877d66c5..fbdf344338 100644 --- a/engines/sword25/gfx/dynamicbitmap.h +++ b/engines/sword25/gfx/dynamicbitmap.h @@ -58,28 +58,28 @@ class DynamicBitmap : public Bitmap { public: virtual ~DynamicBitmap(); - virtual uint GetPixel(int X, int Y) const; + virtual uint getPixel(int x, int y) const; - virtual bool SetContent(const byte *Pixeldata, uint size, uint Offset, uint Stride); + virtual bool setContent(const byte *pixeldata, uint size, uint offset, uint stride); - virtual bool IsScalingAllowed() const; - virtual bool IsAlphaAllowed() const; - virtual bool IsColorModulationAllowed() const; - virtual bool IsSetContentAllowed() const; + virtual bool isScalingAllowed() const; + virtual bool isAlphaAllowed() const; + virtual bool isColorModulationAllowed() const; + virtual bool isSetContentAllowed() const; - virtual bool Persist(OutputPersistenceBlock &Writer); - virtual bool Unpersist(InputPersistenceBlock &Reader); + virtual bool persist(OutputPersistenceBlock &writer); + virtual bool unpersist(InputPersistenceBlock &reader); protected: - virtual bool DoRender(); + virtual bool doRender(); private: - DynamicBitmap(RenderObjectPtr ParentPtr, uint Width, uint Height); - DynamicBitmap(InputPersistenceBlock &Reader, RenderObjectPtr ParentPtr, uint Handle); + DynamicBitmap(RenderObjectPtr parentPtr, uint width, uint height); + DynamicBitmap(InputPersistenceBlock &reader, RenderObjectPtr parentPtr, uint handle); - bool CreateGLImage(uint Width, uint Height); + bool createGLImage(uint width, uint height); - Common::ScopedPtr m_Image; + Common::ScopedPtr _image; }; } // End of namespace Sword25 -- cgit v1.2.3