| 1234567891011121314151617181920 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- namespace BansheeEngine
- {
- /** @addtogroup Rendering
- * @{
- */
- /// <summary>
- /// Base class for all render textures of specific dimensions. Render textures allow the rendering to be performed
- /// into a texture as opposed to a frame buffer.
- /// </summary>
- public class RenderTexture : RenderTarget
- {
- }
- /** @} */
- }
|