source:
GTP/trunk/App/Demos/Geom/OgreStuff/include/OgreRenderTargetTexture.h
@
1092
Revision 1092, 414 bytes checked in by gumbau, 18 years ago (diff) |
---|
Line | |
---|---|
1 | #ifndef __RenderTargetTexture_H__ |
2 | #define __RenderTargetTexture_H__ |
3 | |
4 | #include "OgrePrerequisites.h" |
5 | #include "OgreTexture.h" |
6 | #include "OgreRenderTarget.h" |
7 | |
8 | namespace Ogre |
9 | { |
10 | class _OgrePrivate RenderTargetTexture : public Texture, public RenderTarget |
11 | { |
12 | public: |
13 | /// @copydoc Texture::isRenderTarget |
14 | virtual bool isRenderTarget() const { return false; } |
15 | }; |
16 | } |
17 | |
18 | #endif |
Note: See TracBrowser
for help on using the repository browser.