Could you please provide a complete and minimal example that reproduces the problem?
Using revision number is e7713ab
namespace RenderTextureTestProject
{ class Program
{ static void Main
(string[] args
) { RenderTextureTest _testloop
= new RenderTextureTest
(); _testloop
.Load(); _testloop
.RenderLoop(); } } class RenderTextureTest
{ SFML
.Graphics.RenderWindow _renderwindow
; SFML
.Graphics.RenderTexture _rendertexture
; SFML
.Graphics.Text _mytext
; public void Load
() { _renderwindow
= new SFML
.Graphics.RenderWindow(new SFML
.Window.VideoMode(500,
500),
"RenderTexture Test"); _rendertexture
= new SFML
.Graphics.RenderTexture(500,
500); _mytext
= new SFML
.Graphics.Text("A Simple Test...", SFML
.Graphics.Font.DefaultFont,
42); _rendertexture
.Clear(SFML
.Graphics.Color.Black); _rendertexture
.Draw(_mytext
); _rendertexture
.Display(); } public void RenderLoop
() { while (_renderwindow
.IsOpen()) { _renderwindow
.Clear(SFML
.Graphics.Color.Black); _renderwindow
.Draw(new SFML
.Graphics.Sprite(_rendertexture
.Texture)); _renderwindow
.Display(); } } }}