From: Rodrigo R. <rod...@gm...> - 2011-07-09 11:35:53
|
Hi, i'm having some problems with python-visual. i've attached two example codes i found on the web. pyCube works ok, but ball appears for a moment and then only a black window is shown. i tried it on two other ubuntu computers, both 32 bit, and it worked ok... the cube worked ok on my 64bit ubuntu 10.10. any clues? thanks! -- Rodrigo. |
From: Rodrigo R. <rod...@gm...> - 2011-07-09 12:02:31
|
it turns out it also works on by 64bit, but the colors are different, to the point that the settings make it impossible to see the ball (and an gyro display thing i'm trying out) on the 64bit, but you get it nice and clear and colorful on the 32 bit... On Sat, Jul 9, 2011 at 4:35 AM, Rodrigo Rosa <rod...@gm...> wrote: > Hi, i'm having some problems with python-visual. > i've attached two example codes i found on the web. > pyCube works ok, but ball appears for a moment and then only a black > window is shown. > i tried it on two other ubuntu computers, both 32 bit, and it worked ok... > > the cube worked ok on my 64bit ubuntu 10.10. > > any clues? > > thanks! > > -- > Rodrigo. > -- Rodrigo. |
From: Bruce S. <Bru...@nc...> - 2011-07-09 14:00:19
|
There are two different issues. If you see a display with incorrect colors, that usually means that it is necessary to update the graphics driver. If you have trouble in a 64-bit environment but not in a 32-bit environment, that indicates a problem with building the application for 64-bit environments. If you installed the standard python-visual package that comes with Ubuntu, that could mean that the package was not built correctly for 64-bit Ubuntu. If you built from source, there are in the mailing list archives notes by people who have successfully built for 64-bit Ubuntu. Bruce Sherwood On Sat, Jul 9, 2011 at 6:02 AM, Rodrigo Rosa <rod...@gm...> wrote: > it turns out it also works on by 64bit, but the colors are different, > to the point that the settings make it impossible to see the ball (and > an gyro display thing i'm trying out) on the 64bit, but you get it > nice and clear and colorful on the 32 bit... > > On Sat, Jul 9, 2011 at 4:35 AM, Rodrigo Rosa <rod...@gm...> wrote: >> Hi, i'm having some problems with python-visual. >> i've attached two example codes i found on the web. >> pyCube works ok, but ball appears for a moment and then only a black >> window is shown. >> i tried it on two other ubuntu computers, both 32 bit, and it worked ok... >> >> the cube worked ok on my 64bit ubuntu 10.10. >> >> any clues? >> >> thanks! >> >> -- >> Rodrigo. >> > > > > -- > Rodrigo. > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > |
From: Frank W. S. <fr...@me...> - 2011-07-09 20:35:11
|
I had a similar problem. Uncommenting from .ui import display display.enable_shaders = False from site_settings.py solved it for me. -Frank On Sat, 9 Jul 2011, Rodrigo Rosa wrote: > it turns out it also works on by 64bit, but the colors are different, > to the point that the settings make it impossible to see the ball (and > an gyro display thing i'm trying out) on the 64bit, but you get it > nice and clear and colorful on the 32 bit... > > On Sat, Jul 9, 2011 at 4:35 AM, Rodrigo Rosa <rod...@gm...> wrote: >> Hi, i'm having some problems with python-visual. >> i've attached two example codes i found on the web. >> pyCube works ok, but ball appears for a moment and then only a black >> window is shown. >> i tried it on two other ubuntu computers, both 32 bit, and it worked ok... >> >> the cube worked ok on my 64bit ubuntu 10.10. >> >> any clues? >> >> thanks! >> >> -- >> Rodrigo. >> > > > > -- > Rodrigo. > > ------------------------------------------------------------------------------ > All of the data generated in your IT infrastructure is seriously valuable. > Why? It contains a definitive record of application performance, security > threats, fraudulent activity, and more. Splunk takes this data and makes > sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-d2d-c2 > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > |
From: Rodrigo R. <rod...@gm...> - 2011-07-10 00:01:03
|
uncommenting display.enable_shaders = False from /usr/share/pyshared/visual/site_settings.py fixed it, now i have a nice round red ball and a really noisy imu orientation display :) thanks a lot guys! :) On Sat, Jul 9, 2011 at 1:34 PM, Frank W. Samuelson <fr...@me...> wrote: > > I had a similar problem. Uncommenting > > from .ui import display > display.enable_shaders = False > > from site_settings.py solved it for me. > > -Frank > > > On Sat, 9 Jul 2011, Rodrigo Rosa wrote: > >> it turns out it also works on by 64bit, but the colors are different, >> to the point that the settings make it impossible to see the ball (and >> an gyro display thing i'm trying out) on the 64bit, but you get it >> nice and clear and colorful on the 32 bit... >> >> On Sat, Jul 9, 2011 at 4:35 AM, Rodrigo Rosa <rod...@gm...> >> wrote: >>> >>> Hi, i'm having some problems with python-visual. >>> i've attached two example codes i found on the web. >>> pyCube works ok, but ball appears for a moment and then only a black >>> window is shown. >>> i tried it on two other ubuntu computers, both 32 bit, and it worked >>> ok... >>> >>> the cube worked ok on my 64bit ubuntu 10.10. >>> >>> any clues? >>> >>> thanks! >>> >>> -- >>> Rodrigo. >>> >> >> >> >> -- >> Rodrigo. >> >> >> ------------------------------------------------------------------------------ >> All of the data generated in your IT infrastructure is seriously valuable. >> Why? It contains a definitive record of application performance, security >> threats, fraudulent activity, and more. Splunk takes this data and makes >> sense of it. IT sense. And common sense. >> http://p.sf.net/sfu/splunk-d2d-c2 >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> >> > -- Rodrigo. |