[pypy-svn] r55145 - pypy/dist/pypy/translator/goal

cami at codespeak.net cami at codespeak.net
Fri May 23 10:32:47 CEST 2008


Author: cami
Date: Fri May 23 10:32:47 2008
New Revision: 55145

Modified:
   pypy/dist/pypy/translator/goal/targetsimplevideo.py
Log:
increased the wnidow size to check the speed in c, for use on top o cpython the screen size needs to be reduced


Modified: pypy/dist/pypy/translator/goal/targetsimplevideo.py
==============================================================================
--- pypy/dist/pypy/translator/goal/targetsimplevideo.py	(original)
+++ pypy/dist/pypy/translator/goal/targetsimplevideo.py	Fri May 23 10:32:47 2008
@@ -2,8 +2,8 @@
 from pypy.rpython.lltypesystem import rffi, lltype
 import py
 
-WIDTH = 20
-HEIGHT = 20
+WIDTH = 1000
+HEIGHT = 1000
 
 def entry_point(argv=None):
     RSDL.Init(RSDL.INIT_VIDEO) >= 0



More information about the Pypy-commit mailing list