]> git.lizzy.rs Git - irrlicht.git/blobdiff - source/Irrlicht/CImage.h
Reduce IrrCompileConfig usage to files that actually need it
[irrlicht.git] / source / Irrlicht / CImage.h
index 48d45b3b261ba7e21eeff0bcd68fa10be64a203f..075b984f5d4aad7860cbfa00c64f2b7304d66746 100644 (file)
@@ -37,33 +37,33 @@ public:
        CImage(ECOLOR_FORMAT format, const core::dimension2d<u32>& size);\r
 \r
        //! returns a pixel\r
-       virtual SColor getPixel(u32 x, u32 y) const _IRR_OVERRIDE_;\r
+       SColor getPixel(u32 x, u32 y) const override;\r
 \r
        //! sets a pixel\r
-       virtual void setPixel(u32 x, u32 y, const SColor &color, bool blend = false ) _IRR_OVERRIDE_;\r
+       void setPixel(u32 x, u32 y, const SColor &color, bool blend = false ) override;\r
 \r
        //! copies this surface into another, scaling it to fit.\r
-       virtual void copyToScaling(void* target, u32 width, u32 height, ECOLOR_FORMAT format, u32 pitch=0) _IRR_OVERRIDE_;\r
+       void copyToScaling(void* target, u32 width, u32 height, ECOLOR_FORMAT format, u32 pitch=0) override;\r
 \r
        //! copies this surface into another, scaling it to fit.\r
-       virtual void copyToScaling(IImage* target) _IRR_OVERRIDE_;\r
+       void copyToScaling(IImage* target) override;\r
 \r
        //! copies this surface into another\r
-       virtual void copyTo(IImage* target, const core::position2d<s32>& pos=core::position2d<s32>(0,0)) _IRR_OVERRIDE_;\r
+       void copyTo(IImage* target, const core::position2d<s32>& pos=core::position2d<s32>(0,0)) override;\r
 \r
        //! copies this surface into another\r
-       virtual void copyTo(IImage* target, const core::position2d<s32>& pos, const core::rect<s32>& sourceRect, const core::rect<s32>* clipRect=0) _IRR_OVERRIDE_;\r
+       void copyTo(IImage* target, const core::position2d<s32>& pos, const core::rect<s32>& sourceRect, const core::rect<s32>* clipRect=0) override;\r
 \r
        //! copies this surface into another, using the alpha mask, an cliprect and a color to add with\r
        virtual void copyToWithAlpha(IImage* target, const core::position2d<s32>& pos,\r
                        const core::rect<s32>& sourceRect, const SColor &color,\r
-                       const core::rect<s32>* clipRect = 0, bool combineAlpha=false) _IRR_OVERRIDE_;\r
+                       const core::rect<s32>* clipRect = 0, bool combineAlpha=false) override;\r
 \r
        //! copies this surface into another, scaling it to fit, applying a box filter\r
-       virtual void copyToScalingBoxFilter(IImage* target, s32 bias = 0, bool blend = false) _IRR_OVERRIDE_;\r
+       void copyToScalingBoxFilter(IImage* target, s32 bias = 0, bool blend = false) override;\r
 \r
        //! fills the surface with given color\r
-       virtual void fill(const SColor &color) _IRR_OVERRIDE_;\r
+       void fill(const SColor &color) override;\r
 \r
 private:\r
        inline SColor getPixelBox ( s32 x, s32 y, s32 fx, s32 fy, s32 bias ) const;\r