[Python-ogre-commit] SF.net SVN: python-ogre:[675] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2008-07-28 06:56:49
|
Revision: 675 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=675&view=rev Author: andy_miller Date: 2008-07-28 06:56:57 +0000 (Mon, 28 Jul 2008) Log Message: ----------- Minor change to windows build messages and Physx wrapper Modified Paths: -------------- trunk/python-ogre/code_generators/physx/python_physx_sizeof.h trunk/python-ogre/demos/theora/demo_video.py trunk/python-ogre/demos/theora/resources.cfg trunk/python-ogre/environment.py Modified: trunk/python-ogre/code_generators/physx/python_physx_sizeof.h =================================================================== --- trunk/python-ogre/code_generators/physx/python_physx_sizeof.h 2008-07-24 12:45:21 UTC (rev 674) +++ trunk/python-ogre/code_generators/physx/python_physx_sizeof.h 2008-07-28 06:56:57 UTC (rev 675) @@ -4,4 +4,10 @@ sizeof(_Nx3F32); sizeof(NxUserEntityReport<unsigned int>); sizeof(NxUserEntityReport<NxShape*>); +sizeof ( NxForceFieldShapeGroup ); +sizeof ( NxArray<NxForceFieldShapeGroup*, NxAllocatorDefault> ); +sizeof ( NxArray<NxShapeDesc*, NxAllocatorDefault> ); +sizeof ( NxArray<NxFluidEmitterDesc, NxAllocatorDefault> ); +sizeof ( NxArray<NxForceFieldShapeDesc*, NxAllocatorDefault> ); +sizeof ( _Nx3F32 ); Modified: trunk/python-ogre/demos/theora/demo_video.py =================================================================== --- trunk/python-ogre/demos/theora/demo_video.py 2008-07-24 12:45:21 UTC (rev 674) +++ trunk/python-ogre/demos/theora/demo_video.py 2008-07-28 06:56:57 UTC (rev 675) @@ -47,7 +47,7 @@ self.Control.setTextureTecPassStateLevel( 0, 0, 0 ) self.Control.setSeekEnabled( False ) - self.Control.setAutoAudioUpdate ( True ) +# self.Control.setAutoAudioUpdate ( True ) mat = ogre.MaterialManager.getSingleton().getByName("Example/TheoraVideoPlayer/Play") #Create the material the first time through this method @@ -97,6 +97,7 @@ ret = sf.FrameListener.frameStarted(self, frameEvent) if self.video and ret: self.video.blitFrameCheck() + self.video.getAudioDriver().autoUpdate() return ret Modified: trunk/python-ogre/demos/theora/resources.cfg =================================================================== --- trunk/python-ogre/demos/theora/resources.cfg 2008-07-24 12:45:21 UTC (rev 674) +++ trunk/python-ogre/demos/theora/resources.cfg 2008-07-28 06:56:57 UTC (rev 675) @@ -3,6 +3,7 @@ # Resource locations to be added to the default path [General] +FileSystem=. FileSystem=../media FileSystem=../media_extra Modified: trunk/python-ogre/environment.py =================================================================== --- trunk/python-ogre/environment.py 2008-07-24 12:45:21 UTC (rev 674) +++ trunk/python-ogre/environment.py 2008-07-28 06:56:57 UTC (rev 675) @@ -849,7 +849,8 @@ ] buildCmds = [ [0, unzip + " " + os.path.join(downloadPath,base)+".zip", os.getcwd()], - [0, 'echo Please use MSVC to build the CEGUI Release project',''], + [0, 'echo Now run build_vs2008.bat from the CEGUI makefiles\premake directory',''], + [0, 'echo then use MSVC to build the CEGUI Release project',''], [0, 'echo WARNING - Check that RTTI is enabled in the compiler options',''], [0, 'echo Then ensure that OgreGUIRender is compiled with this version of CEGUI',''] ] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |