diff options
Diffstat (limited to '')
-rw-r--r-- | libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h b/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h index 4f083f0..66eebdb 100644 --- a/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h +++ b/libraries/irrlicht-1.8/source/Irrlicht/IImagePresenter.h | |||
@@ -1,36 +1,36 @@ | |||
1 | // Copyright (C) 2002-2012 Nikolaus Gebhardt | 1 | // Copyright (C) 2002-2012 Nikolaus Gebhardt |
2 | // This file is part of the "Irrlicht Engine". | 2 | // This file is part of the "Irrlicht Engine". |
3 | // For conditions of distribution and use, see copyright notice in irrlicht.h | 3 | // For conditions of distribution and use, see copyright notice in irrlicht.h |
4 | 4 | ||
5 | #ifndef __I_IMAGE_PRESENTER_H_INCLUDED__ | 5 | #ifndef __I_IMAGE_PRESENTER_H_INCLUDED__ |
6 | #define __I_IMAGE_PRESENTER_H_INCLUDED__ | 6 | #define __I_IMAGE_PRESENTER_H_INCLUDED__ |
7 | 7 | ||
8 | #include "IImage.h" | 8 | #include "IImage.h" |
9 | 9 | ||
10 | namespace irr | 10 | namespace irr |
11 | { | 11 | { |
12 | namespace video | 12 | namespace video |
13 | { | 13 | { |
14 | 14 | ||
15 | /*! | 15 | /*! |
16 | Interface for a class which is able to present an IImage | 16 | Interface for a class which is able to present an IImage |
17 | an the Screen. Usually only implemented by an IrrDevice for | 17 | an the Screen. Usually only implemented by an IrrDevice for |
18 | presenting Software Device Rendered images. | 18 | presenting Software Device Rendered images. |
19 | 19 | ||
20 | This class should be used only internally. | 20 | This class should be used only internally. |
21 | */ | 21 | */ |
22 | 22 | ||
23 | class IImagePresenter | 23 | class IImagePresenter |
24 | { | 24 | { |
25 | public: | 25 | public: |
26 | 26 | ||
27 | virtual ~IImagePresenter() {}; | 27 | virtual ~IImagePresenter() {}; |
28 | //! presents a surface in the client area | 28 | //! presents a surface in the client area |
29 | virtual bool present(video::IImage* surface, void* windowId=0, core::rect<s32>* src=0 ) = 0; | 29 | virtual bool present(video::IImage* surface, void* windowId=0, core::rect<s32>* src=0 ) = 0; |
30 | }; | 30 | }; |
31 | 31 | ||
32 | } // end namespace video | 32 | } // end namespace video |
33 | } // end namespace irr | 33 | } // end namespace irr |
34 | 34 | ||
35 | #endif | 35 | #endif |
36 | 36 | ||