RenderTexture.cs 615 B

1234567891011121314151617181920
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. namespace BansheeEngine
  4. {
  5. /** @addtogroup Rendering
  6. * @{
  7. */
  8. /// <summary>
  9. /// Base class for all render textures of specific dimensions. Render textures allow the rendering to be performed
  10. /// into a texture as opposed to a frame buffer.
  11. /// </summary>
  12. public class RenderTexture : RenderTarget
  13. {
  14. }
  15. /** @} */
  16. }