Paul Deppe writes:

> Gents,
> 
> With the latest CVS (1400 EST 3/5/2002) on my Cygwin/Win2k system the
> textures in mountainous areas seem to "walk" across the ground and appear
> and disappear in a very strange manner.  I am wondering if anyone else sees
> this problem.

You're almost certainly seeing some of the effects of bringing the 
near clip plane right in, which occured in today's CVS.  Try backing 
out the change below and see if that helps.  It will probably get 
changed back (or to something else) at some point anyway.

Cheers - Dave


Index: main.cxx
=================================================
==================
RCS file: /var/cvs/FlightGear-0.7/FlightGear/src/Main/main.cxx,v
retrieving revision 1.245
retrieving revision 1.246
diff -C2 -r1.245 -r1.246
*** main.cxx    3 Mar 2002 22:20:55 -0000       1.245
--- main.cxx    5 Mar 2002 12:35:48 -0000       1.246
***************
*** 662,673 ****
                   globals->get_current_view()->get_v_fov() );
  
!       double agl = current_aircraft.fdm_state->get_Altitude() *
SG_FEET_TO_METER
!           - scenery.get_cur_elev();
! 
!       if ( agl > 10.0 ) {
!           ssgSetNearFar( 10.0f, 120000.0f );
!       } else {
!           ssgSetNearFar( 0.5f, 120000.0f );
!       }
  
        current_model.update(0); // FIXME: use real delta time
--- 662,666 ----
                   globals->get_current_view()->get_v_fov() );
  
!       ssgSetNearFar( 0.1f, 120000.0f );
  
        current_model.update(0); // FIXME: use real delta time

--
[EMAIL PROTECTED]

_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to