RenderTexture.cs 654 B

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