* PySFML now compiles and runs with python3 (and still compiles and runs

with python 2.5)
* Improved support for unicode
* Fixed a mysterious bug with the opengl sample
* Code clean up


git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1024 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
remi-k 2009-02-27 17:57:39 +00:00
parent af3dd7c630
commit 39f4805a98
14 changed files with 306 additions and 140 deletions

View file

@ -29,7 +29,7 @@
#include <SFML/Graphics/Drawable.hpp>
#include "RenderWindow.hpp"
#include "RenderTarget.hpp"
class CustomDrawable : public sf::Drawable
@ -37,7 +37,7 @@ class CustomDrawable : public sf::Drawable
protected :
virtual void Render(sf::RenderTarget& Target) const;
public :
PySfRenderWindow *RenderWindow;
PySfRenderTarget *RenderTarget;
PyObject *RenderFunction;
};