source: OGRE/trunk/ogrenew/OgreMain/include/OgreRenderTargetTexture.h @ 657

Revision 657, 414 bytes checked in by mattausch, 18 years ago (diff)

added ogre dependencies and patched ogre sources

Line 
1#ifndef __RenderTargetTexture_H__
2#define __RenderTargetTexture_H__
3
4#include "OgrePrerequisites.h"
5#include "OgreTexture.h"
6#include "OgreRenderTarget.h"
7
8namespace 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.