git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1460 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
trass3r 2010-03-15 23:52:54 +00:00
parent cfedeee112
commit 337448d3cb
5 changed files with 11 additions and 11 deletions

View file

@ -93,12 +93,12 @@ public:
void render(IRenderTarget window)
{
sfRenderWindow_DrawThis((cast(DSFMLObject)window).getNativePointer(), m_ptr);
sfRenderWindow_DrawThis((cast(DSFMLObject)window).nativePointer, m_ptr);
}
void renderWithShader(IRenderTarget window, Shader shader)
{
sfRenderWindow_DrawThisWithShader((cast(DSFMLObject)window).getNativePointer, m_ptr, shader.getNativePointer);
sfRenderWindow_DrawThisWithShader((cast(DSFMLObject)window).nativePointer, m_ptr, shader.nativePointer);
}
void setPosition(float x, float y)