RenderTexture.cs 386 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BansheeEngine
  6. {
  7. /// <summary>
  8. /// Base class for all render textures of specific dimensions. Render textures allow the rendering to be performed
  9. /// into a texture as opposed to a frame buffer.
  10. /// </summary>
  11. public class RenderTexture : RenderTarget
  12. {
  13. }
  14. }