Erik Hofman wrote:

Ampere K. Hardraade wrote:

After removing Xorg and upgrading XFree to the latest CVS version, I am finally able to use FlightGear in 24-bits color. However, I am still not seeing any 3D clouds.

I have an ATI Radeon 9200SE graphic card. I remember 3D Clouds was working fine when it (the code for the new 3D Clouds) was first added the code to the CVS. I haven't been able to get the 3D clouds to show up in subsequent updates.

What am I missing?


Harald at one point added a check to make sure the RenderTexture context was actually available. It almost looks like this was a bit too drastic.

Erik

in simgear..bbcache.cxx commited May 15th
*** 114,120 ****
// rt->Reset("rgba tex2D");
if( rt->Initialize(256, 256, true) ) {
- rtAvailable = true;
if (rt->BeginCapture()) {
glViewport(0, 0, 256, 256);
glMatrixMode(GL_PROJECTION);
--- 116,122 ----
// rt->Reset("rgba tex2D");
if( rt->Initialize(256, 256, true) ) {
if (rt->BeginCapture()) {
+ rtAvailable = true;
glViewport(0, 0, 256, 256);
glMatrixMode(GL_PROJECTION);

You can try to reverse that change (moving the rtAvailable = true; one line up). But you normaly have a warning in the log if the error comes from this part of the code.

Harald.


_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d

Reply via email to