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

@ -183,7 +183,7 @@ public:
// */
// void copyScreen(RenderWindow window, IntRect sourceRect = IntRect())
// {
// return cast(bool)sfImage_CopyScreen(m_ptr, window.getNativePointer, sourceRect);
// return cast(bool)sfImage_CopyScreen(m_ptr, window.nativePointer, sourceRect);
// }
/**
@ -199,7 +199,7 @@ public:
*/
void copy(Image source, uint destX, uint destY, IntRect sourceRect = IntRect())
{
sfImage_Copy(m_ptr, source.getNativePointer, destX, destY, sourceRect);
sfImage_Copy(m_ptr, source.nativePointer, destX, destY, sourceRect);
}
/**