Re: [Flightgear-devel] fg shows a blank screen

2009-11-30 Thread Jari Häkkinen
Thanks.



Tim Moore wrote:
> On 11/29/2009 01:59 AM, Csaba Halász wrote:
>> On Sun, Nov 29, 2009 at 12:54 AM, Jari Häkkinen  wrote:
>>> I traced the problem to changeset 10838 in OSG. I cannot say what goes
>>> wrong but maybe one of the list readers do.
>>>
>>> http://www.openscenegraph.org/projects/osg/changeset/10838/OpenSceneGraph/trunk
>> Good job pinpointing the trouble!
>> Since that commit introduces a change in default behaviour, I suppose
>> restoring the previous behaviour by explicitly specifying the mask
>> should fix it. This works for me:
>> http://gitorious.org/fg/jesters-clone/commit/e80075464dc67e868cfc42d209a4ca7c7be234f1
>>
>> But we shall wait until one of our OSG experts takes a look. We might
>> also want to make it conditional on the OSG version (always fun, that)
>> because this enum value hasn't existed before.
>>
> 
> I committed your patch with an autoconf test. Any Windows friends using
> OSG from svn will need to #define HAVE_CULLSETTINGS_CLEAR_MASK.
> 
> Tim
> 
> --
> Join us December 9, 2009 for the Red Hat Virtual Experience,
> a free event focused on virtualization and cloud computing. 
> Attend in-depth sessions from your desk. Your couch. Anywhere.
> http://p.sf.net/sfu/redhat-sfdev2dev
> ___
> Flightgear-devel mailing list
> Flightgear-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/flightgear-devel


--
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-30 Thread Tim Moore
On 11/29/2009 01:59 AM, Csaba Halász wrote:
> On Sun, Nov 29, 2009 at 12:54 AM, Jari Häkkinen  wrote:
>>
>> I traced the problem to changeset 10838 in OSG. I cannot say what goes
>> wrong but maybe one of the list readers do.
>>
>> http://www.openscenegraph.org/projects/osg/changeset/10838/OpenSceneGraph/trunk
> 
> Good job pinpointing the trouble!
> Since that commit introduces a change in default behaviour, I suppose
> restoring the previous behaviour by explicitly specifying the mask
> should fix it. This works for me:
> http://gitorious.org/fg/jesters-clone/commit/e80075464dc67e868cfc42d209a4ca7c7be234f1
> 
> But we shall wait until one of our OSG experts takes a look. We might
> also want to make it conditional on the OSG version (always fun, that)
> because this enum value hasn't existed before.
> 

I committed your patch with an autoconf test. Any Windows friends using
OSG from svn will need to #define HAVE_CULLSETTINGS_CLEAR_MASK.

Tim

--
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-29 Thread Tatsuhiro Nishioka
Hi Jari,

On Nov 29, 2009, at 12:33 AM, Jari Häkkinen wrote:
> On the startup terminal I get messages like this one
>
> Sat Nov 28 16:27:15 signori.local fgfs[54344] : 
> CGBitmapContextCreate: unsupported parameter combination: 8 integer 
> bits/component; 16 bits/pixel; 1-component color space; 
> kCGImageAlphaLast; 512 bytes/row.
> Sat Nov 28 16:27:15 signori.local fgfs[54344] : 
> CGContextDrawImage: invalid context 0x0

The error messages are made due to failure in loading PNG files (usually 
grayscale images + alpha).
This is Mac OS X specific and is under investigation but you can see the cause 
and the workaround at:
http://macflightgear.sourceforge.net/home/development-notes/devnote-nov-26-2009

Hope it helps in separating the problems,

Tat


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-29 Thread Durk Talsma
On Sunday 29 November 2009 01:59:56 am Csaba Halász wrote:
> But we shall wait until one of our OSG experts takes a look. We might
> also want to make it conditional on the OSG version (always fun, that)
> because this enum value hasn't existed before.


Just to add two my two cents: I'm only seeing this problem on my center 
monitor. I have a triple screen setup, having three separate screens defined 
in xorg. The only major difference between my center screen and the two 
peripheral ones is the fact that the GUI related output (which contains some 
non-OSG OpenGL code) is projected onto the center screen. 

The two peripheral monitors (left and right view), are behaving normally.

Cheers,
Durk

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-28 Thread Csaba Halász
On Sun, Nov 29, 2009 at 12:54 AM, Jari Häkkinen  wrote:
>
> I traced the problem to changeset 10838 in OSG. I cannot say what goes
> wrong but maybe one of the list readers do.
>
> http://www.openscenegraph.org/projects/osg/changeset/10838/OpenSceneGraph/trunk

Good job pinpointing the trouble!
Since that commit introduces a change in default behaviour, I suppose
restoring the previous behaviour by explicitly specifying the mask
should fix it. This works for me:
http://gitorious.org/fg/jesters-clone/commit/e80075464dc67e868cfc42d209a4ca7c7be234f1

But we shall wait until one of our OSG experts takes a look. We might
also want to make it conditional on the OSG version (always fun, that)
because this enum value hasn't existed before.

-- 
Cheers,
Csaba/Jester

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-28 Thread Jason Cox
I belive this is a change in the FG data format.
I recall that there was a change to the shaders that caused this about
two weeks ago.

try a refresh of the scenery data
Jason


On Sun, 2009-11-29 at 01:27 +0100, jean pellotier wrote:
> Jari Häkkinen a écrit :
> > On 2009-11-28 16.55, jean pellotier wrote:
> >   
> >> Jari Häkkinen a écrit :
> >> 
> >>> Hi all,
> >>>
> >>> I only get a blank single colour screen when I run fg (latest cvs/svn
> >>> versions of plib/osg/simgear/fg). The colour changes with time settings,
> >>> it is grey at noon, bluish at dusk, and black in night time. I can see
> >>> the top menu and I have sound. I get the message saying which runway I
> >>> am located at.
> >>>
> >>>   
> >> same here with the last OSG svn, menu and hud is working and the plane
> >> too, but i only have black to blue screen,  taking an old OSG solved the
> >> problem for me (i used the 10820 revision).
> >> 
> >
> > I traced the problem to changeset 10838 in OSG. I cannot say what goes 
> > wrong but maybe one of the list readers do.
> >
> > http://www.openscenegraph.org/projects/osg/changeset/10838/OpenSceneGraph/trunk
> >
> > Is this a mac specific problem or does it occur in other OSs too?
> >
> >
> > Jari
> >
> >   
> not mac specific, here on debian SID, amd athlon xp2800+, nvidia 6200.
> 
> 
> jano
> 
> 
> 
> 
> --
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
> trial. Simplify your report design, integration and deployment - and focus on 
> what you do best, core application coding. Discover what's new with
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> ___
> Flightgear-devel mailing list
> Flightgear-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/flightgear-devel


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-28 Thread jean pellotier
Jari Häkkinen a écrit :
> On 2009-11-28 16.55, jean pellotier wrote:
>   
>> Jari Häkkinen a écrit :
>> 
>>> Hi all,
>>>
>>> I only get a blank single colour screen when I run fg (latest cvs/svn
>>> versions of plib/osg/simgear/fg). The colour changes with time settings,
>>> it is grey at noon, bluish at dusk, and black in night time. I can see
>>> the top menu and I have sound. I get the message saying which runway I
>>> am located at.
>>>
>>>   
>> same here with the last OSG svn, menu and hud is working and the plane
>> too, but i only have black to blue screen,  taking an old OSG solved the
>> problem for me (i used the 10820 revision).
>> 
>
> I traced the problem to changeset 10838 in OSG. I cannot say what goes 
> wrong but maybe one of the list readers do.
>
> http://www.openscenegraph.org/projects/osg/changeset/10838/OpenSceneGraph/trunk
>
> Is this a mac specific problem or does it occur in other OSs too?
>
>
> Jari
>
>   
not mac specific, here on debian SID, amd athlon xp2800+, nvidia 6200.


jano




--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-28 Thread Jari Häkkinen
On 2009-11-28 16.55, jean pellotier wrote:
> Jari Häkkinen a écrit :
>> Hi all,
>>
>> I only get a blank single colour screen when I run fg (latest cvs/svn
>> versions of plib/osg/simgear/fg). The colour changes with time settings,
>> it is grey at noon, bluish at dusk, and black in night time. I can see
>> the top menu and I have sound. I get the message saying which runway I
>> am located at.
>>
> same here with the last OSG svn, menu and hud is working and the plane
> too, but i only have black to blue screen,  taking an old OSG solved the
> problem for me (i used the 10820 revision).

I traced the problem to changeset 10838 in OSG. I cannot say what goes 
wrong but maybe one of the list readers do.

http://www.openscenegraph.org/projects/osg/changeset/10838/OpenSceneGraph/trunk

Is this a mac specific problem or does it occur in other OSs too?


Jari


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] fg shows a blank screen

2009-11-28 Thread jean pellotier
Jari Häkkinen a écrit :
> Hi all,
>
> I only get a blank single colour screen when I run fg (latest cvs/svn 
> versions of plib/osg/simgear/fg). The colour changes with time settings, 
> it is grey at noon, bluish at dusk, and black in night time. I can see 
> the top menu and I have sound. I get the message saying which runway I 
> am located at.
>   
same here with the last OSG svn, menu and hud is working and the plane 
too, but i only have black to blue screen,  taking an old OSG solved the 
problem for me (i used the 10820 revision).

jano

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel