New Release D3D9Client Development

Bibi Uncle

50% Orbinaut, 50% Developer
Addon Developer
Joined
Aug 12, 2010
Messages
192
Reaction score
0
Points
0
Location
Québec, QC
I've spend two days trying to determine which runway lights to render, depending on the camera's direction
  • The first day was lost because I was reading asmi code which is quite weird on this...
  • The next day was lost because I did not initialize my vector... Late dev results.
  • And today, just after school, I booted my computer, looked at code and saw this stupid mistake...
I should be able to program the PAPI. If I have trouble, I'll ask you.
Edit:
Dev status: Center and edge lights' color are done. Depending on the camera direction, the corresponding lights are rendered. The touch zone displacement is now an available option that affects the lights' position.
runway2.jpg


I think I need your help amsi for the runway end lights. In the Wiki, it says:

Runway end lights – a pair of four lights on each side of the runway on precision instrument runways, these lights extend along the full width of the runway. These lights show green when viewed by approaching aircraft and red when seen from the runway.

In your code, you simply draw 20 lights at the end. I would like to be more precise, but I can't understand the first sentence...
 
Last edited:

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,651
Reaction score
785
Points
128
I would like to be more precise, but I can't understand the first sentence...
The sentence is a bit unclear. But I think it's just a row of lights that goes over the runway edge on both sides by four lights.
 

Gr_Chris_pilot

DGIV Captain
Joined
Feb 17, 2012
Messages
87
Reaction score
0
Points
6
Location
Athens, Greece
Website
www.facebook.com
I've spend two days trying to determine which runway lights to render, depending on the camera's direction
  • The first day was lost because I was reading asmi code which is quite weird on this...
  • The next day was lost because I did not initialize my vector... Late dev results.
  • And today, just after school, I booted my computer, looked at code and saw this stupid mistake...
I should be able to program the PAPI. If I have trouble, I'll ask you.
Edit:
Dev status: Center and edge lights' color are done. Depending on the camera direction, the corresponding lights are rendered. The touch zone displacement is now an available option that affects the lights' position.
runway2.jpg


I think I need your help amsi for the runway end lights. In the Wiki, it says:



In your code, you simply draw 20 lights at the end. I would like to be more precise, but I can't understand the first sentence...


These 4 are the papi lights.... The green line of lights is exactly at the threshold. Viewed from approach is green after passing the threshold they turning to red (they are not actually turning but its 2 different lights in one position like the papi lights) So the red-white runway center lights starting 300 meters before runway end (threshold not with the stopway) and becoming only red 100 meters before the end of the runway :cheers: i hope this can help


And something more in orbiter we have Yellow arrows before the threshold that means the area inside the arrows is NOT allowed for landing - taxiing - takeoff! White arrows:good for taxiing only http://www.risingwingsaviation.com/Graphics/demarcationbar.gif
 
Last edited:

orb

O-F Administrator,
News Reporter
Joined
Oct 30, 2009
Messages
14,020
Reaction score
4
Points
0
So the red-white runway center lights starting 300 meters before runway end (threshold not with the stopway) and becoming only red 100 meters before the end of the runway :cheers: i hope this can help
Are you sure they don't start red-white at 900 meters or 3000 feet before the end (threshold) with last 300 meters or 1000 feet of red?

Runway centre line lights shall be fixed lights showing variable white from the threshold to the point 900m from the runway end; alternate red and variable white from 900m to 300m from the runway end; and red from 300m to the runway end, except that:
  1. where the runway centre line lights are spaced at 7.5m intervals, alternate pairs of red and variable white lights shall be used on the section from 900m to 300m from the runway end; and
  2. for runways less than 1800m in length, the alternate red and variable white lights shall extend from the mid point of the runway usable for landing to 300m from the runway end.


Maybe this can help with the runway end and threshold lights:

http://www.tc.gc.ca/eng/civilaviation/publications/tp312-chapter5-5-3-931.htm#5.3.11 - Civilian
http://buildingcriteria2.tpub.com/ufc_3_535_01/ufc_3_535_010065.htm - Air Force
http://buildingcriteria2.tpub.com/ufc_3_535_01/ufc_3_535_010066.htm - Army

figure5-20a.gif
 

N_Molson

Addon Developer
Addon Developer
Donator
Joined
Mar 5, 2010
Messages
9,271
Reaction score
3,244
Points
203
Location
Toulouse
Hi jarmonik, :hello:

On a completely different matter, I was wondering if it is possible to apply normal maps on planets using the D3D9 client ? After all, if it is possible for vessels and surface bases... :idea:

Using those files, for exemple (see bottom of the page) :

http://orbiter-forum.com/showthread.php?t=26097&page=2

I tried to do it "the intuitive way" (just keeping the name as they are, so I have MoonL11.tex and MoonL11_norm.tex in the "Textures2" folder). But that doesn't seem to work (the idea would be to have a realistic "rough" terminator line on the Moon). So I was wondering, maybe the client handles only .dds files as normal maps and ignores .tex files ?

Or I am missing something else ? :hmm:

Thanks for all the work :cheers:
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,651
Reaction score
785
Points
128
On a completely different matter, I was wondering if it is possible to apply normal maps on planets using the D3D9 client ? After all, if it is possible for vessels and surface bases... :idea:
Using those files, for exemple (see bottom of the page) :
Yes, it should be possible if the files are compressed in a format that's supported by DX9. But still, there are quite lot of work until they are fully operational. There are also many other feature request those will create a question about priorities. Not everything can be implemented at the same time.

---------- Post added at 20:33 ---------- Previous post was at 20:31 ----------

Here is a small piece of code for PAPI:
PAPI lights can be in the same array with the rest of the runway lights. No need to create a separate array.
EDIT: The glide path angles are incorrect in this example.
PS: Would be better to take 'arcsine' from the dot product instead of computing 'sine' four times.
PHP:
    BAVERTEX *pLight = pArray->LockVertexBuffer();

    if (pLight) {
        D3DXVECTOR3 vPos, vUp;
        D3DXVec3TransformNormal(&vUp, &D3DXVECTOR3(0,1,0), &mWorld);

        D3DXVECTOR3 vRef(pLight[3].x, pLight[3].y, pLight[3].z);
        D3DXVec3Normalize(&vPos, D3DXVec3TransformCoord(&vPos, &vRef, &mWorld));

        float slope = -D3DXVec3Dot(&vPos,&vUp);

        if (slope<sin(15.0*RAD)) pLight[0].color = 0xFFFF5555;
        else pLight[0].color = 0xFFFFFFFF;

        if (slope<sin(17.5*RAD)) pLight[1].color = 0xFFFF5555;
        else pLight[1].color = 0xFFFFFFFF;

        if (slope<sin(20.0*RAD)) pLight[2].color = 0xFFFF5555;
        else pLight[2].color = 0xFFFFFFFF;

        if (slope<sin(22.5*RAD)) pLight[3].color = 0xFFFF5555;
        else pLight[3].color = 0xFFFFFFFF;
        
        pArray->UnLockVertexBuffer();
    }
    
    pArray->Render(dev, &mWorld, fmod(oapiGetSimTime(),1.0));
 
Last edited:

Bibi Uncle

50% Orbinaut, 50% Developer
Addon Developer
Joined
Aug 12, 2010
Messages
192
Reaction score
0
Points
0
Location
Québec, QC
My idea was to create four arrays containing the four possibilities of lights of the PAPI, and render the desired one depending on the camera's position (in the RunwayLights::Render). Which one is the best? I'm not a pro in Direct3D as you jarmonik, but locking and unlocking a vertex buffer at runtime is not time consuming?

_____________________________________________________________


Based on Transport Canada, I have 3 options:
  1. on a runway less than 45m in width, six lights arranged in two groups, and on a runway 45m and greater in width, eight lights arranged in two groups;
  2. in addition to those lights required by (a) above, when a precision approach runway categoryI lighting system is installed, additional lights as required to achieve a maximum spacing of 3m between individual lights; and
  3. in addition to those lights required by (a) and (b) above, on a precision approach runway categoryII or III, additional lights as required to achieve a maximum spacing of 1.5m between individual lights.
Considering that Orbiter should provide a "uniform" set of lighting system (we do not specify if the runway's category), which one is the best? I think that the 3m spacing (category I) would be good. Not too precise, but enough to be realistic. What is the global opinion?
 
Last edited:

Gr_Chris_pilot

DGIV Captain
Joined
Feb 17, 2012
Messages
87
Reaction score
0
Points
6
Location
Athens, Greece
Website
www.facebook.com
Are you sure they don't start red-white at 900 meters or 3000 feet before the end (threshold) with last 300 meters or 1000 feet of red?




Maybe this can help with the runway end and threshold lights:

http://www.tc.gc.ca/eng/civilaviation/publications/tp312-chapter5-5-3-931.htm#5.3.11 - Civilian
http://buildingcriteria2.tpub.com/ufc_3_535_01/ufc_3_535_010065.htm - Air Force
http://buildingcriteria2.tpub.com/ufc_3_535_01/ufc_3_535_010066.htm - Army

figure5-20a.gif

Yep this is for FAA rules (usa-canada) for europe we have JAA rules but only a few changes are noticeable, You were right by the way....
 

Bibi Uncle

50% Orbinaut, 50% Developer
Addon Developer
Joined
Aug 12, 2010
Messages
192
Reaction score
0
Points
0
Location
Québec, QC
The runway end lights are done. I am using the 3m spacing, but I can easily change to 1.5m. In this shot and the previous ones, the lights are probably too big. It simply eases my development.

Approaching:
approach.jpg


At the end of the runway:
end.jpg
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,651
Reaction score
785
Points
128
My idea was to create four arrays containing the four possibilities of lights of the PAPI, and render the desired one depending on the camera's position (in the RunwayLights::Render). Which one is the best? I'm not a pro in Direct3D as you jarmonik, but locking and unlocking a vertex buffer at runtime is not time consuming?

It's a bit time consuming but doesn't show up in a framerate if done only a few times for each frame. I don't have actual data about how much time it consumes. Both options will work, I don't know which one is the better one. Your idea is also a good one, you can do what ever you feel best.


Considering that Orbiter should provide a "uniform" set of lighting system (we do not specify if the runway's category), which one is the best? I think that the 3m spacing (category I) would be good. Not too precise, but enough to be realistic. What is the global opinion?

I would probably choose the one closest to the shuttle runway. I don't know which category it belongs or is it a special one. But 3m is fine by me.

---------- Post added at 02:23 ---------- Previous post was at 01:40 ----------

The runway end lights are done. I am using the 3m spacing, but I can easily change to 1.5m. In this shot and the previous ones, the lights are probably too big. It simply eases my development.

Looks, great. The 3m is certainly dense enough.
 

Donamy

Addon Developer
Addon Developer
Donator
Beta Tester
Joined
Oct 16, 2007
Messages
6,904
Reaction score
195
Points
138
Location
Cape
I ran a scenario from Launch to docking real time, about 4 hours. In D3D9, while the autopilot was attempting to sync orbit, the frame rates slowed way down, 67 to 1 or 2 FPS, finally crashing. It runs flawlessly in the regular Orbiter. Here is the errors I got in the HTML:
Code:
(715: 40066.72s 32491us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(716: 40066.76s 70527us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=200534016, name=Earth_tile.tex, ErrorCode = -9
(717: 40066.76s 71780us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(718: 40066.83s 137748us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(719: 40066.83s 138032us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=200566912, name=Earth_tile.tex, ErrorCode = -9
(720: 40066.84s 147599us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(721: 40066.89s 200643us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(722: 40066.89s 200923us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=200599808, name=Earth_tile.tex, ErrorCode = -9
(723: 40066.90s 205231us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(724: 40066.95s 256712us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(725: 40066.95s 256944us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=200632704, name=Earth_tile.tex, ErrorCode = -9
(726: 40066.95s 261365us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(727: 40106.13s 36528us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(728: 40106.13s 39032us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185138688, name=Earth_tile.tex, ErrorCode = -9
(729: 40106.14s 48248us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(730: 40106.20s 100473us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(731: 40106.20s 100820us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185171584, name=Earth_tile.tex, ErrorCode = -9
(732: 40106.20s 105827us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(733: 40106.25s 158687us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(734: 40106.25s 158911us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185204480, name=Earth_tile.tex, ErrorCode = -9
(735: 40106.26s 163887us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(736: 40106.31s 215566us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(737: 40106.31s 215852us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185237376, name=Earth_tile.tex, ErrorCode = -9
(738: 40106.32s 220439us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(739: 40160.38s 53455us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(740: 40160.38s 56812us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185270272, name=Earth_tile.tex, ErrorCode = -9
(741: 40160.40s 70141us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(742: 40160.45s 125952us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(743: 40160.45s 126271us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185303168, name=Earth_tile.tex, ErrorCode = -9
(744: 40160.46s 131193us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(745: 40160.51s 182893us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(746: 40160.51s 183147us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185336064, name=Earth_tile.tex, ErrorCode = -9
(747: 40160.51s 187536us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(748: 40160.57s 240170us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(749: 40160.57s 240414us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185368960, name=Earth_tile.tex, ErrorCode = -9
(750: 40160.57s 244887us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(751: 40171.86s 60008us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(752: 40171.86s 62565us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184875520, name=Earth_tile.tex, ErrorCode = -9
(753: 40171.87s 75554us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(754: 40171.93s 128781us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(755: 40171.93s 129067us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184908416, name=Earth_tile.tex, ErrorCode = -9
(756: 40171.93s 133971us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(757: 40171.99s 187752us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(758: 40171.99s 187983us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184941312, name=Earth_tile.tex, ErrorCode = -9
(759: 40171.99s 192278us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(760: 40172.04s 245430us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(761: 40172.04s 245707us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184974208, name=Earth_tile.tex, ErrorCode = -9
(762: 40172.05s 249990us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(763: 40205.29s 26256us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(764: 40205.29s 28700us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185007104, name=Earth_tile.tex, ErrorCode = -9
(765: 40205.31s 42951us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(766: 40205.36s 94858us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(767: 40205.36s 95131us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185040000, name=Earth_tile.tex, ErrorCode = -9
(768: 40205.36s 100253us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(769: 40205.42s 152613us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(770: 40205.42s 152926us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185072896, name=Earth_tile.tex, ErrorCode = -9
(771: 40205.42s 157997us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(772: 40205.48s 213274us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(773: 40205.48s 213502us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=185105792, name=Earth_tile.tex, ErrorCode = -9
(774: 40205.48s 217864us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(775: 40206.40s 21589us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(776: 40206.40s 21959us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184743936, name=Earth_tile.tex, ErrorCode = -9
(777: 40206.40s 26646us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(778: 40206.46s 82072us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(779: 40206.46s 82332us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184776832, name=Earth_tile.tex, ErrorCode = -9
(780: 40206.46s 87080us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(781: 40206.52s 140955us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(782: 40206.52s 141218us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184809728, name=Earth_tile.tex, ErrorCode = -9
(783: 40206.52s 146126us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(784: 40206.58s 200721us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(785: 40206.58s 200985us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184842624, name=Earth_tile.tex, ErrorCode = -9
(786: 40206.58s 204860us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(787: 40233.59s 14054us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(788: 40233.59s 14465us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30790656, name=Earth_tile.tex, ErrorCode = -9
(789: 40233.61s 28648us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(790: 40233.66s 81723us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(791: 40233.66s 82001us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30823552, name=Earth_tile.tex, ErrorCode = -9
(792: 40233.67s 87051us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(793: 40233.72s 139999us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(794: 40233.72s 140233us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30856448, name=Earth_tile.tex, ErrorCode = -9
(795: 40233.72s 145263us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(796: 40233.78s 199285us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(797: 40233.78s 199536us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30889344, name=Earth_tile.tex, ErrorCode = -9
(798: 40233.78s 204096us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(799: 40255.03s 44281us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(800: 40255.03s 44657us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30659072, name=Earth_tile.tex, ErrorCode = -9
(801: 40255.04s 50121us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(802: 40255.10s 113388us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(803: 40255.10s 113638us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30691968, name=Earth_tile.tex, ErrorCode = -9
(804: 40255.10s 118107us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(805: 40255.16s 171672us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(806: 40255.16s 171919us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30724864, name=Earth_tile.tex, ErrorCode = -9
(807: 40255.16s 176538us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(808: 40255.21s 229048us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(809: 40255.21s 229299us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=30757760, name=Earth_tile.tex, ErrorCode = -9
(810: 40255.23s 245165us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(811: 40262.77s 23737us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(812: 40262.77s 26165us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=171322368, name=Earth_tile.tex, ErrorCode = -9
(813: 40262.79s 39740us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(814: 40262.84s 92923us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(815: 40262.84s 93153us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=171355264, name=Earth_tile.tex, ErrorCode = -9
(816: 40262.85s 98438us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(817: 40262.90s 150589us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(818: 40262.90s 150842us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=171388160, name=Earth_tile.tex, ErrorCode = -9
(819: 40262.90s 155818us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(820: 40262.96s 210261us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(821: 40262.96s 210540us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=171421056, name=Earth_tile.tex, ErrorCode = -9
(822: 40262.96s 214848us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(823: 40279.18s 18315us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(824: 40279.18s 20832us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170796032, name=Earth_tile.tex, ErrorCode = -9
(825: 40279.19s 29146us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(826: 40279.24s 83693us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(827: 40279.24s 83929us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170828928, name=Earth_tile.tex, ErrorCode = -9
(828: 40279.25s 89131us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(829: 40279.30s 143368us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(830: 40279.30s 143648us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170861824, name=Earth_tile.tex, ErrorCode = -9
(831: 40279.31s 148605us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(832: 40279.36s 203544us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(833: 40279.36s 203795us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170894720, name=Earth_tile.tex, ErrorCode = -9
(834: 40279.37s 208145us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(835: 40290.90s 65340us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(836: 40290.90s 67739us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170927616, name=Earth_tile.tex, ErrorCode = -9
(837: 40290.92s 81529us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(838: 40290.97s 135223us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(839: 40290.97s 135468us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170960512, name=Earth_tile.tex, ErrorCode = -9
(840: 40290.97s 140403us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(841: 40291.03s 192416us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(842: 40291.03s 192669us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170993408, name=Earth_tile.tex, ErrorCode = -9
(843: 40291.03s 196885us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(844: 40291.08s 248833us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(845: 40291.08s 249059us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=171026304, name=Earth_tile.tex, ErrorCode = -9
(846: 40291.09s 253409us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(847: 40297.14s 26395us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(848: 40297.14s 29175us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184349184, name=Earth_tile.tex, ErrorCode = -9
(849: 40297.15s 32835us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(850: 40297.20s 86755us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(851: 40297.20s 87073us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184382080, name=Earth_tile.tex, ErrorCode = -9
(852: 40297.21s 92209us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(853: 40297.27s 158200us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(854: 40297.27s 158449us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184414976, name=Earth_tile.tex, ErrorCode = -9
(855: 40297.29s 173098us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(856: 40297.34s 227202us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(857: 40297.34s 227448us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=184447872, name=Earth_tile.tex, ErrorCode = -9
(858: 40297.35s 231853us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(859: 40374.02s 60817us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(860: 40374.30s 334284us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170401280, name=Earth_tile.tex, ErrorCode = -9
(861: 40374.32s 357838us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(862: 40374.44s 76966us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(863: 40374.44s 77498us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170434176, name=Earth_tile.tex, ErrorCode = -9
(864: 40374.46s 101580us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(865: 40374.62s 257926us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(866: 40374.62s 259436us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170467072, name=Earth_tile.tex, ErrorCode = -9
(867: 40374.63s 267307us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(868: 40374.68s 321807us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(869: 40374.69s 322117us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170499968, name=Earth_tile.tex, ErrorCode = -9
(870: 40374.69s 326814us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(871: 40413.89s 51774us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(872: 40414.02s 179740us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170532864, name=Earth_tile.tex, ErrorCode = -9
(873: 40414.09s 253404us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(874: 40414.17s 335740us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(875: 40414.17s 336161us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170565760, name=Earth_tile.tex, ErrorCode = -9
(876: 40414.18s 344680us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(877: 40414.24s 45867us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(878: 40414.24s 46198us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170598656, name=Earth_tile.tex, ErrorCode = -9
(879: 40414.28s 88703us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(880: 40414.38s 184824us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(881: 40414.38s 185203us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170631552, name=Earth_tile.tex, ErrorCode = -9
(882: 40414.42s 228007us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(883: 40452.40s 232238us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(884: 40453.03s 477523us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170138112, name=Earth_tile.tex, ErrorCode = -9
(885: 40453.49s 42us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(886: 40453.61s 120208us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(887: 40453.61s 120580us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170171008, name=Earth_tile.tex, ErrorCode = -9
(888: 40453.63s 140086us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(889: 40453.69s 202923us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(890: 40453.69s 203241us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170203904, name=Earth_tile.tex, ErrorCode = -9
(891: 40453.71s 220247us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(892: 40453.79s 305639us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(893: 40453.79s 306051us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170236800, name=Earth_tile.tex, ErrorCode = -9
(894: 40453.81s 322668us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(895: 40461.69s 56675us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(896: 40461.70s 58692us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170006528, name=Earth_tile.tex, ErrorCode = -9
(897: 40461.71s 68581us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(898: 40461.76s 122369us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(899: 40461.76s 122688us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170039424, name=Earth_tile.tex, ErrorCode = -9
(900: 40461.77s 127920us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(901: 40461.82s 180435us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(902: 40461.82s 180730us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170072320, name=Earth_tile.tex, ErrorCode = -9
(903: 40461.82s 185906us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(904: 40461.88s 238986us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(905: 40461.88s 239320us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=170105216, name=Earth_tile.tex, ErrorCode = -9
(906: 40461.88s 243931us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(907: 40487.19s 70277us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(908: 40487.19s 72952us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27764224, name=Earth_tile.tex, ErrorCode = -9
(909: 40487.20s 81840us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(910: 40487.25s 134504us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(911: 40487.25s 134834us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27797120, name=Earth_tile.tex, ErrorCode = -9
(912: 40487.26s 140602us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(913: 40487.31s 196470us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(914: 40487.32s 196841us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27830016, name=Earth_tile.tex, ErrorCode = -9
(915: 40487.32s 201134us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(916: 40487.37s 253975us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(917: 40487.37s 254292us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27862912, name=Earth_tile.tex, ErrorCode = -9
(918: 40487.38s 258809us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(919: 40523.31s 42149us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(920: 40523.31s 42550us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=169611776, name=Earth_tile.tex, ErrorCode = -9
(921: 40523.32s 52992us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(922: 40523.37s 106659us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(923: 40523.37s 106976us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=169644672, name=Earth_tile.tex, ErrorCode = -9
(924: 40523.38s 111502us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(925: 40523.43s 165416us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(926: 40523.43s 165713us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=169677568, name=Earth_tile.tex, ErrorCode = -9
(927: 40523.43s 170308us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(928: 40523.49s 223165us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(929: 40523.49s 223508us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=169710464, name=Earth_tile.tex, ErrorCode = -9
(930: 40523.49s 227986us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(931: 40544.84s 68476us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(932: 40544.84s 71139us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27632640, name=Earth_tile.tex, ErrorCode = -9
(933: 40544.85s 85415us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(934: 40544.91s 139260us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(935: 40544.91s 139560us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27665536, name=Earth_tile.tex, ErrorCode = -9
(936: 40544.91s 144633us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(937: 40544.97s 196650us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(938: 40544.97s 196922us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27698432, name=Earth_tile.tex, ErrorCode = -9
(939: 40544.97s 201336us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(940: 40545.02s 253028us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(941: 40545.02s 253319us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=27731328, name=Earth_tile.tex, ErrorCode = -9
(942: 40545.03s 257710us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(943: 40680.84s 29735us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(944: 40680.84s 32064us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158690304, name=Earth_tile.tex, ErrorCode = -9
(945: 40680.85s 42221us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(946: 40680.90s 96680us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(947: 40680.90s 96931us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158723200, name=Earth_tile.tex, ErrorCode = -9
(948: 40680.91s 102397us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(949: 40680.96s 156401us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(950: 40680.96s 156807us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158756096, name=Earth_tile.tex, ErrorCode = -9
(951: 40680.97s 162084us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(952: 40681.02s 215711us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(953: 40681.02s 215981us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158788992, name=Earth_tile.tex, ErrorCode = -9
(954: 40681.03s 220456us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(955: 40702.27s 51762us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(956: 40702.27s 54229us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158295552, name=Earth_tile.tex, ErrorCode = -9
(957: 40702.29s 68961us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(958: 40702.34s 125018us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(959: 40702.34s 125353us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158328448, name=Earth_tile.tex, ErrorCode = -9
(960: 40702.35s 130458us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(961: 40702.40s 184687us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(962: 40702.40s 184992us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158361344, name=Earth_tile.tex, ErrorCode = -9
(963: 40702.41s 189467us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(964: 40702.46s 240724us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(965: 40702.46s 241012us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158394240, name=Earth_tile.tex, ErrorCode = -9
(966: 40702.46s 245459us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(967: 40791.55s 55466us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(968: 40791.55s 55845us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158163968, name=Earth_tile.tex, ErrorCode = -9
(969: 40791.56s 65596us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(970: 40791.61s 121179us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(971: 40791.61s 121513us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158196864, name=Earth_tile.tex, ErrorCode = -9
(972: 40791.62s 126117us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(973: 40791.67s 179781us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(974: 40791.67s 180068us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158229760, name=Earth_tile.tex, ErrorCode = -9
(975: 40791.68s 184516us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(976: 40791.73s 237742us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(977: 40791.73s 238112us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=158262656, name=Earth_tile.tex, ErrorCode = -9
(978: 40791.73s 242588us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(979: 41720.77s 23585us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(980: 41720.77s 26033us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211060736, name=Earth_tile.tex, ErrorCode = -9
(981: 41720.78s 35296us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(982: 41720.84s 91281us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(983: 41720.84s 91584us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211093632, name=Earth_tile.tex, ErrorCode = -9
(984: 41720.84s 96981us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(985: 41720.90s 150741us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(986: 41720.90s 151117us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211126528, name=Earth_tile.tex, ErrorCode = -9
(987: 41720.90s 156148us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(988: 41720.96s 210726us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(989: 41720.96s 211000us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211159424, name=Earth_tile.tex, ErrorCode = -9
(990: 41720.96s 215603us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(991: 41723.40s 52906us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(992: 41723.41s 55404us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211455488, name=Earth_tile.tex, ErrorCode = -9
(993: 41723.41s 59870us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(994: 41723.46s 112767us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(995: 41723.46s 113122us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211488384, name=Earth_tile.tex, ErrorCode = -9
(996: 41723.47s 118155us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(997: 41723.52s 171464us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(998: 41723.52s 171768us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211521280, name=Earth_tile.tex, ErrorCode = -9
(999: 41723.53s 177185us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1000: 41723.58s 229651us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1001: 41723.58s 229984us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=211554176, name=Earth_tile.tex, ErrorCode = -9
(1002: 41723.59s 234451us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1003: 41903.58s 12981us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1004: 41903.58s 13399us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=228035072, name=Earth_tile.tex, ErrorCode = -9
(1005: 41903.65s 86179us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1006: 41903.65s 86665us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=228067968, name=Earth_tile.tex, ErrorCode = -9
(1007: 41903.66s 91322us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1008: 41903.71s 144795us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1009: 41903.71s 145109us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=228100864, name=Earth_tile.tex, ErrorCode = -9
(1010: 41903.72s 150133us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1011: 41903.77s 202679us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1012: 41903.77s 202986us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=228133760, name=Earth_tile.tex, ErrorCode = -9
(1013: 41903.78s 207495us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1014: 42080.61s 54us)(0x2D38) New Base Visual(0xB435430) Sriharikota hBase=0x3ACD650, nsbs=1, nsas=0
(1015: 42101.37s 45765us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1016: 42101.37s 46122us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138821120, name=Earth_tile.tex, ErrorCode = -9
(1017: 42101.38s 55412us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1018: 42101.43s 107996us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1019: 42101.43s 108302us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138854016, name=Earth_tile.tex, ErrorCode = -9
(1020: 42101.44s 113497us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1021: 42101.49s 167419us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1022: 42101.49s 167718us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138886912, name=Earth_tile.tex, ErrorCode = -9
(1023: 42101.49s 172285us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1024: 42101.55s 223885us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1025: 42101.55s 224165us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138919808, name=Earth_tile.tex, ErrorCode = -9
(1026: 42101.55s 228654us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1027: 42153.23s 32381us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1028: 42153.23s 34607us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138557952, name=Earth_tile.tex, ErrorCode = -9
(1029: 42153.24s 44643us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1030: 42153.29s 96602us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1031: 42153.29s 96915us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138590848, name=Earth_tile.tex, ErrorCode = -9
(1032: 42153.30s 102238us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1033: 42153.36s 157571us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1034: 42153.36s 157865us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138623744, name=Earth_tile.tex, ErrorCode = -9
(1035: 42153.36s 162971us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1036: 42153.41s 216531us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1037: 42153.41s 216827us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138656640, name=Earth_tile.tex, ErrorCode = -9
(1038: 42153.42s 220869us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1039: 42182.49s 33381us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1040: 42182.49s 35510us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139215872, name=Earth_tile.tex, ErrorCode = -9
(1041: 42182.49s 40172us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1042: 42182.55s 95114us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1043: 42182.55s 95367us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139248768, name=Earth_tile.tex, ErrorCode = -9
(1044: 42182.55s 100222us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1045: 42182.61s 156517us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1046: 42182.61s 156800us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139281664, name=Earth_tile.tex, ErrorCode = -9
(1047: 42182.61s 161508us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1048: 42182.67s 215664us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1049: 42182.67s 215964us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139314560, name=Earth_tile.tex, ErrorCode = -9
(1050: 42182.67s 220423us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1051: 42220.63s 34851us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1052: 42220.64s 36962us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138426368, name=Earth_tile.tex, ErrorCode = -9
(1053: 42220.65s 49934us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1054: 42220.70s 104758us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1055: 42220.71s 105310us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138459264, name=Earth_tile.tex, ErrorCode = -9
(1056: 42220.71s 110363us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1057: 42220.76s 164320us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1058: 42220.76s 164644us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138492160, name=Earth_tile.tex, ErrorCode = -9
(1059: 42220.77s 169693us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1060: 42220.82s 224821us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1061: 42220.83s 225169us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138525056, name=Earth_tile.tex, ErrorCode = -9
(1062: 42220.83s 229500us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1063: 42235.31s 43012us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1064: 42235.31s 43477us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138952704, name=Earth_tile.tex, ErrorCode = -9
(1065: 42235.32s 52852us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1066: 42235.38s 108627us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1067: 42235.38s 108948us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=138985600, name=Earth_tile.tex, ErrorCode = -9
(1068: 42235.39s 114426us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1069: 42235.44s 166667us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1070: 42235.44s 166905us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139018496, name=Earth_tile.tex, ErrorCode = -9
(1071: 42235.44s 172144us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1072: 42235.50s 225116us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1073: 42235.50s 225417us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139051392, name=Earth_tile.tex, ErrorCode = -9
(1074: 42235.50s 229899us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1075: 42277.83s 44051us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1076: 42277.83s 46523us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18553344, name=Earth_tile.tex, ErrorCode = -9
(1077: 42277.90s 119998us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1078: 42277.90s 120306us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18586240, name=Earth_tile.tex, ErrorCode = -9
(1079: 42277.91s 124814us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1080: 42277.96s 180307us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1081: 42277.96s 180614us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18619136, name=Earth_tile.tex, ErrorCode = -9
(1082: 42277.97s 185130us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1083: 42278.02s 236905us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1084: 42278.02s 237312us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18652032, name=Earth_tile.tex, ErrorCode = -9
(1085: 42278.03s 241665us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1086: 42285.31s 60969us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1087: 42285.31s 63428us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122373120, name=Earth_tile.tex, ErrorCode = -9
(1088: 42285.33s 78144us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1089: 42285.38s 133125us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1090: 42285.38s 133434us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122406016, name=Earth_tile.tex, ErrorCode = -9
(1091: 42285.39s 138148us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1092: 42285.44s 189725us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1093: 42285.44s 190105us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122438912, name=Earth_tile.tex, ErrorCode = -9
(1094: 42285.44s 194595us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1095: 42285.50s 249142us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1096: 42285.50s 249439us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122471808, name=Earth_tile.tex, ErrorCode = -9
(1097: 42285.50s 253892us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1098: 42302.88s 54351us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1099: 42302.89s 57098us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18421760, name=Earth_tile.tex, ErrorCode = -9
(1100: 42302.90s 69905us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1101: 42302.95s 121904us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1102: 42302.95s 122212us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18454656, name=Earth_tile.tex, ErrorCode = -9
(1103: 42302.96s 127518us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1104: 42303.01s 183563us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1105: 42303.01s 183880us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18487552, name=Earth_tile.tex, ErrorCode = -9
(1106: 42303.02s 189114us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1107: 42303.07s 244271us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1108: 42303.07s 244640us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=18520448, name=Earth_tile.tex, ErrorCode = -9
(1109: 42303.08s 248984us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1110: 42316.71s 22607us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1111: 42316.71s 24862us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=121978368, name=Earth_tile.tex, ErrorCode = -9
(1112: 42316.72s 34700us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1113: 42316.77s 86636us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1114: 42316.77s 86918us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122011264, name=Earth_tile.tex, ErrorCode = -9
(1115: 42316.78s 92422us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1116: 42316.83s 147447us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1117: 42316.84s 147775us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122044160, name=Earth_tile.tex, ErrorCode = -9
(1118: 42316.84s 152751us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1119: 42316.89s 204585us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1120: 42316.89s 204873us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122077056, name=Earth_tile.tex, ErrorCode = -9
(1121: 42316.90s 209395us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1122: 42320.11s 40304us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1123: 42320.11s 40686us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139084288, name=Earth_tile.tex, ErrorCode = -9
(1124: 42320.12s 51337us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1125: 42320.18s 107721us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1126: 42320.18s 108041us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139117184, name=Earth_tile.tex, ErrorCode = -9
(1127: 42320.18s 112692us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1128: 42320.23s 164382us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1129: 42320.23s 164694us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139150080, name=Earth_tile.tex, ErrorCode = -9
(1130: 42320.24s 169806us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1131: 42320.29s 224082us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1132: 42320.29s 224399us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=139182976, name=Earth_tile.tex, ErrorCode = -9
(1133: 42320.30s 228834us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1134: 42369.20s 48676us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1135: 42369.20s 51199us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122504704, name=Earth_tile.tex, ErrorCode = -9
(1136: 42369.21s 61088us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1137: 42369.26s 115259us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1138: 42369.26s 115573us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122537600, name=Earth_tile.tex, ErrorCode = -9
(1139: 42369.27s 120638us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1140: 42369.32s 173455us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1141: 42369.32s 173770us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122570496, name=Earth_tile.tex, ErrorCode = -9
(1142: 42369.33s 178893us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1143: 42369.38s 234621us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1144: 42369.38s 234926us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122603392, name=Earth_tile.tex, ErrorCode = -9
(1145: 42369.39s 239548us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1146: 42414.77s 50819us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1147: 42414.77s 53294us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122109952, name=Earth_tile.tex, ErrorCode = -9
(1148: 42414.78s 62550us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1149: 42414.83s 117928us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1150: 42414.83s 118230us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122142848, name=Earth_tile.tex, ErrorCode = -9
(1151: 42414.84s 123340us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1152: 42414.89s 176605us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1153: 42414.89s 176925us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122175744, name=Earth_tile.tex, ErrorCode = -9
(1154: 42414.90s 181964us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1155: 42414.95s 234934us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1156: 42414.95s 235288us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122208640, name=Earth_tile.tex, ErrorCode = -9
(1157: 42414.96s 239772us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1158: 42416.63s 49311us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1159: 42416.64s 51760us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122241536, name=Earth_tile.tex, ErrorCode = -9
(1160: 42416.64s 56280us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1161: 42416.70s 110248us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1162: 42416.70s 110646us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122274432, name=Earth_tile.tex, ErrorCode = -9
(1163: 42416.70s 115661us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1164: 42416.75s 169670us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1165: 42416.75s 170002us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122307328, name=Earth_tile.tex, ErrorCode = -9
(1166: 42416.76s 175038us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1167: 42416.81s 228428us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1168: 42416.81s 228719us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122340224, name=Earth_tile.tex, ErrorCode = -9
(1169: 42416.82s 233224us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1170: 42451.02s 52010us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1171: 42451.02s 52419us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14474240, name=Earth_tile.tex, ErrorCode = -9
(1172: 42451.03s 62884us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1173: 42451.08s 115130us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1174: 42451.08s 115437us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14507136, name=Earth_tile.tex, ErrorCode = -9
(1175: 42451.08s 120630us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1176: 42451.14s 173017us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1177: 42451.14s 173346us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14540032, name=Earth_tile.tex, ErrorCode = -9
(1178: 42451.14s 178052us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1179: 42451.20s 233074us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1180: 42451.20s 233392us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14572928, name=Earth_tile.tex, ErrorCode = -9
(1181: 42451.20s 237888us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1182: 42458.58s 55107us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1183: 42458.59s 57611us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106056704, name=Earth_tile.tex, ErrorCode = -9
(1184: 42458.60s 67321us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1185: 42458.65s 118902us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1186: 42458.65s 119208us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106089600, name=Earth_tile.tex, ErrorCode = -9
(1187: 42458.65s 124289us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1188: 42458.70s 176636us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1189: 42458.70s 176946us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106122496, name=Earth_tile.tex, ErrorCode = -9
(1190: 42458.71s 182058us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1191: 42458.76s 234616us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1192: 42458.76s 234938us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106155392, name=Earth_tile.tex, ErrorCode = -9
(1193: 42458.77s 239432us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1194: 42500.03s 17870us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1195: 42500.03s 19971us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122636288, name=Earth_tile.tex, ErrorCode = -9
(1196: 42500.04s 30309us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1197: 42500.10s 84860us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1198: 42500.10s 85106us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122669184, name=Earth_tile.tex, ErrorCode = -9
(1199: 42500.10s 90536us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1200: 42500.16s 142165us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1201: 42500.16s 142455us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122702080, name=Earth_tile.tex, ErrorCode = -9
(1202: 42500.16s 147915us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1203: 42500.21s 201079us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1204: 42500.22s 201355us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=122734976, name=Earth_tile.tex, ErrorCode = -9
(1205: 42500.22s 205855us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1206: 42512.79s 72406us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1207: 42512.79s 74682us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14342656, name=Earth_tile.tex, ErrorCode = -9
(1208: 42512.80s 83462us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1209: 42512.85s 138768us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1210: 42512.85s 139055us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14375552, name=Earth_tile.tex, ErrorCode = -9
(1211: 42512.86s 143539us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1212: 42512.91s 196077us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1213: 42512.91s 196338us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14408448, name=Earth_tile.tex, ErrorCode = -9
(1214: 42512.92s 200848us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1215: 42512.97s 253295us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1216: 42512.97s 253541us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=14441344, name=Earth_tile.tex, ErrorCode = -9
(1217: 42512.97s 258236us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1218: 42532.24s 59445us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1219: 42532.24s 61820us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105661952, name=Earth_tile.tex, ErrorCode = -9
(1220: 42532.25s 71795us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1221: 42532.31s 124901us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1222: 42532.31s 125170us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105694848, name=Earth_tile.tex, ErrorCode = -9
(1223: 42532.31s 130597us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1224: 42532.36s 184097us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1225: 42532.37s 184479us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105727744, name=Earth_tile.tex, ErrorCode = -9
(1226: 42532.37s 188858us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1227: 42532.42s 242081us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1228: 42532.42s 242415us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105760640, name=Earth_tile.tex, ErrorCode = -9
(1229: 42532.43s 246754us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1230: 42545.21s 24072us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1231: 42545.21s 24486us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106188288, name=Earth_tile.tex, ErrorCode = -9
(1232: 42545.22s 35029us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1233: 42545.27s 85992us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1234: 42545.27s 86339us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106221184, name=Earth_tile.tex, ErrorCode = -9
(1235: 42545.27s 91605us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1236: 42545.33s 146485us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1237: 42545.33s 146787us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106254080, name=Earth_tile.tex, ErrorCode = -9
(1238: 42545.33s 151398us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1239: 42545.39s 205348us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1240: 42545.39s 205706us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106286976, name=Earth_tile.tex, ErrorCode = -9
(1241: 42545.39s 210070us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1242: 42590.77s 19315us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1243: 42590.77s 19745us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105925120, name=Earth_tile.tex, ErrorCode = -9
(1244: 42590.77s 25074us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1245: 42590.83s 80352us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1246: 42590.83s 80669us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105958016, name=Earth_tile.tex, ErrorCode = -9
(1247: 42590.84s 85929us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1248: 42590.89s 138741us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1249: 42590.89s 139041us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105990912, name=Earth_tile.tex, ErrorCode = -9
(1250: 42590.89s 143863us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1251: 42590.95s 199509us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1252: 42590.95s 199868us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106023808, name=Earth_tile.tex, ErrorCode = -9
(1253: 42590.95s 204310us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1254: 42604.52s 53us)(0x2D38) New Base Visual(0xB4D60D8) Jiuquan hBase=0x3A3B3E0, nsbs=1, nsas=0
(1255: 42629.99s 70535us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1256: 42630.00s 72992us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106583040, name=Earth_tile.tex, ErrorCode = -9
(1257: 42630.01s 82657us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1258: 42630.06s 135265us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1259: 42630.06s 135576us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106615936, name=Earth_tile.tex, ErrorCode = -9
(1260: 42630.06s 140782us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1261: 42630.12s 194067us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1262: 42630.12s 194357us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106648832, name=Earth_tile.tex, ErrorCode = -9
(1263: 42630.12s 198847us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1264: 42630.18s 252743us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1265: 42630.18s 253057us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106681728, name=Earth_tile.tex, ErrorCode = -9
(1266: 42630.18s 258015us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1267: 42630.70s 18996us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1268: 42630.70s 19341us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10658304, name=Earth_tile.tex, ErrorCode = -9
(1269: 42630.71s 28965us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1270: 42630.77s 85730us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1271: 42630.77s 86062us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10691200, name=Earth_tile.tex, ErrorCode = -9
(1272: 42630.77s 91361us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1273: 42630.83s 147647us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1274: 42630.83s 148031us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10724096, name=Earth_tile.tex, ErrorCode = -9
(1275: 42630.83s 152989us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1276: 42630.89s 205481us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1277: 42630.89s 205783us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10756992, name=Earth_tile.tex, ErrorCode = -9
(1278: 42630.89s 210464us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1279: 42632.58s 29111us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1280: 42632.58s 29515us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105793536, name=Earth_tile.tex, ErrorCode = -9
(1281: 42632.59s 38756us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1282: 42632.64s 93189us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1283: 42632.64s 93415us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105826432, name=Earth_tile.tex, ErrorCode = -9
(1284: 42632.65s 98409us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1285: 42632.70s 149966us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1286: 42632.70s 150275us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105859328, name=Earth_tile.tex, ErrorCode = -9
(1287: 42632.70s 155390us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1288: 42632.76s 209528us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1289: 42632.76s 209844us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=105892224, name=Earth_tile.tex, ErrorCode = -9
(1290: 42632.76s 214388us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1291: 42672.50s 47026us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1292: 42672.50s 47391us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106319872, name=Earth_tile.tex, ErrorCode = -9
(1293: 42672.51s 57464us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1294: 42672.56s 113353us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1295: 42672.57s 113640us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106352768, name=Earth_tile.tex, ErrorCode = -9
(1296: 42672.57s 118223us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1297: 42672.62s 172531us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1298: 42672.62s 172804us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106385664, name=Earth_tile.tex, ErrorCode = -9
(1299: 42672.63s 177986us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1300: 42672.68s 230805us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1301: 42672.68s 231091us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106418560, name=Earth_tile.tex, ErrorCode = -9
(1302: 42672.69s 235580us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1303: 42719.70s 38982us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1304: 42719.70s 39391us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10526720, name=Earth_tile.tex, ErrorCode = -9
(1305: 42719.71s 49229us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1306: 42719.76s 101220us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1307: 42719.76s 101613us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10559616, name=Earth_tile.tex, ErrorCode = -9
(1308: 42719.77s 107073us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1309: 42719.82s 161038us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1310: 42719.82s 161326us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10592512, name=Earth_tile.tex, ErrorCode = -9
(1311: 42719.83s 166489us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1312: 42719.88s 220715us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1313: 42719.88s 221057us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=10625408, name=Earth_tile.tex, ErrorCode = -9
(1314: 42719.89s 225428us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1315: 42722.70s 56196us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1316: 42722.70s 58605us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90924544, name=Earth_tile.tex, ErrorCode = -9
(1317: 42722.71s 67881us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1318: 42722.77s 122190us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1319: 42722.77s 122495us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90957440, name=Earth_tile.tex, ErrorCode = -9
(1320: 42722.77s 127047us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1321: 42722.82s 179354us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1322: 42722.82s 179610us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90990336, name=Earth_tile.tex, ErrorCode = -9
(1323: 42722.83s 184814us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1324: 42722.88s 238771us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1325: 42722.88s 239113us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91023232, name=Earth_tile.tex, ErrorCode = -9
(1326: 42722.89s 243540us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1327: 42734.99s 59522us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1328: 42734.99s 61628us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90792960, name=Earth_tile.tex, ErrorCode = -9
(1329: 42735.01s 76766us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1330: 42735.06s 131838us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1331: 42735.06s 132126us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90825856, name=Earth_tile.tex, ErrorCode = -9
(1332: 42735.07s 137325us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1333: 42735.12s 191746us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1334: 42735.12s 192052us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90858752, name=Earth_tile.tex, ErrorCode = -9
(1335: 42735.13s 196511us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1336: 42735.18s 248946us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1337: 42735.18s 249240us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90891648, name=Earth_tile.tex, ErrorCode = -9
(1338: 42735.18s 253667us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1339: 42752.01s 26095us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1340: 42752.01s 28210us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106451456, name=Earth_tile.tex, ErrorCode = -9
(1341: 42752.02s 38620us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1342: 42752.08s 91103us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1343: 42752.08s 91411us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106484352, name=Earth_tile.tex, ErrorCode = -9
(1344: 42752.08s 96186us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1345: 42752.13s 147741us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1346: 42752.13s 148042us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106517248, name=Earth_tile.tex, ErrorCode = -9
(1347: 42752.14s 153242us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1348: 42752.19s 204361us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1349: 42752.19s 204638us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=106550144, name=Earth_tile.tex, ErrorCode = -9
(1350: 42752.20s 209145us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1351: 42771.37s 92329us)(0x2D38)[ERROR] Texture Earth_1_e0284_n0117.dds failed to load
(1352: 42771.45s 72808us)(0x2D38)[ERROR] Texture Earth_1_e0285_n0117.dds failed to load
(1353: 42771.49s 37997us)(0x2D38)[ERROR] Texture Earth_1_e0286_n0117.dds failed to load
(1354: 42771.54s 54194us)(0x2D38)[ERROR] Texture Earth_1_e0284_n0116.dds failed to load
(1355: 42771.59s 47149us)(0x2D38)[ERROR] Texture Earth_1_e0285_n0116.dds failed to load
(1356: 42771.61s 21298us)(0x2D38)[ERROR] Texture Earth_1_e0286_n0116.dds failed to load
(1357: 42771.67s 63122us)(0x2D38)[ERROR] Texture Earth_1_e0284_n0115.dds failed to load
(1358: 42771.73s 51762us)(0x2D38)[ERROR] Texture Earth_1_e0285_n0115.dds failed to load
(1359: 42771.75s 19773us)(0x2D38)[ERROR] Texture Earth_1_e0286_n0115.dds failed to load
(1360: 42771.80s 58578us)(0x2D38)[ERROR] Texture Earth_4_e2281_n0932.dds failed to load
(1361: 42771.86s 53250us)(0x2D38)[ERROR] Texture Earth_4_e2282_n0932.dds failed to load
(1362: 42771.90s 42611us)(0x2D38)[ERROR] Texture Earth_4_e2281_n0931.dds failed to load
(1363: 42771.95s 53168us)(0x2D38)[ERROR] Texture Earth_4_e2282_n0931.dds failed to load
(1364: 42771.98s 27367us)(0x2D38)[ERROR] Texture Earth_8_e36514_n14912.dds failed to load
(1365: 42772.04s 54455us)(0x2D38)[ERROR] Texture Earth_8_e36515_n14912.dds failed to load
(1366: 42772.04s 57399us)(0x2D38) New Base Visual(0xB518510) JSLC hBase=0x3A3B748, nsbs=1, nsas=12
(1367: 42804.19s 82268us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1368: 42804.19s 84679us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91319296, name=Earth_tile.tex, ErrorCode = -9
(1369: 42804.25s 137932us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1370: 42804.33s 222956us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1371: 42804.33s 223258us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91352192, name=Earth_tile.tex, ErrorCode = -9
(1372: 42804.36s 248207us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1373: 42804.42s 312948us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1374: 42804.42s 313271us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91385088, name=Earth_tile.tex, ErrorCode = -9
(1375: 42804.45s 342558us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1376: 42805.41s 931047us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1377: 42805.41s 254us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91417984, name=Earth_tile.tex, ErrorCode = -9
(1378: 42805.41s 2045us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1379: 42846.88s 66490us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1380: 42846.88s 66892us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91056128, name=Earth_tile.tex, ErrorCode = -9
(1381: 42846.89s 81016us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1382: 42846.94s 135149us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1383: 42846.94s 135460us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91089024, name=Earth_tile.tex, ErrorCode = -9
(1384: 42846.95s 140389us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1385: 42847.00s 195573us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1386: 42847.01s 195888us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91121920, name=Earth_tile.tex, ErrorCode = -9
(1387: 42847.01s 200379us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1388: 42847.06s 254517us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1389: 42847.06s 254820us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91154816, name=Earth_tile.tex, ErrorCode = -9
(1390: 42847.07s 259343us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1391: 42880.09s 18982us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1392: 42880.09s 20991us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90661376, name=Earth_tile.tex, ErrorCode = -9
(1393: 42880.11s 36413us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1394: 42880.16s 87877us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1395: 42880.16s 88177us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90694272, name=Earth_tile.tex, ErrorCode = -9
(1396: 42880.16s 93621us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1397: 42880.22s 148527us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1398: 42880.22s 148822us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90727168, name=Earth_tile.tex, ErrorCode = -9
(1399: 42880.23s 153917us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1400: 42880.28s 208475us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1401: 42880.28s 208770us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=90760064, name=Earth_tile.tex, ErrorCode = -9
(1402: 42880.28s 213315us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1403: 42881.41s 23312us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1404: 42881.42s 25870us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91450880, name=Earth_tile.tex, ErrorCode = -9
(1405: 42881.44s 49180us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1406: 42881.50s 106083us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1407: 42881.50s 106417us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91483776, name=Earth_tile.tex, ErrorCode = -9
(1408: 42881.50s 111623us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1409: 42881.56s 164811us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1410: 42881.56s 165110us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91516672, name=Earth_tile.tex, ErrorCode = -9
(1411: 42881.56s 170121us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1412: 42881.61s 223921us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1413: 42881.62s 224234us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91549568, name=Earth_tile.tex, ErrorCode = -9
(1414: 42881.62s 228695us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1415: 42909.52s 25190us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1416: 42909.52s 25564us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7237120, name=Earth_tile.tex, ErrorCode = -9
(1417: 42909.53s 36384us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1418: 42909.58s 88312us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1419: 42909.58s 88611us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7270016, name=Earth_tile.tex, ErrorCode = -9
(1420: 42909.59s 93455us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1421: 42909.64s 148871us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1422: 42909.64s 149183us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7302912, name=Earth_tile.tex, ErrorCode = -9
(1423: 42909.65s 154312us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1424: 42909.70s 208249us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1425: 42909.70s 208537us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7335808, name=Earth_tile.tex, ErrorCode = -9
(1426: 42909.71s 212934us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1427: 42919.78s 46401us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1428: 42919.78s 48514us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91187712, name=Earth_tile.tex, ErrorCode = -9
(1429: 42919.79s 57200us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1430: 42919.84s 109313us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1431: 42919.84s 109618us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91220608, name=Earth_tile.tex, ErrorCode = -9
(1432: 42919.84s 114774us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1433: 42919.89s 165737us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1434: 42919.90s 166053us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91253504, name=Earth_tile.tex, ErrorCode = -9
(1435: 42919.90s 171215us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1436: 42919.95s 224912us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1437: 42919.95s 225207us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91286400, name=Earth_tile.tex, ErrorCode = -9
(1438: 42919.96s 229500us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1439: 42937.50s 50836us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1440: 42937.50s 53334us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7105536, name=Earth_tile.tex, ErrorCode = -9
(1441: 42937.55s 100428us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1442: 42937.63s 178369us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1443: 42937.63s 178711us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7138432, name=Earth_tile.tex, ErrorCode = -9
(1444: 42937.66s 210389us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1445: 42937.74s 291907us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1446: 42937.74s 292153us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7171328, name=Earth_tile.tex, ErrorCode = -9
(1447: 42937.76s 308108us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1448: 42938.75s 313us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1449: 42938.75s 638us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=7204224, name=Earth_tile.tex, ErrorCode = -9
(1450: 42938.76s 3284us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1451: 42991.07s 25403us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1452: 42991.07s 25747us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91582464, name=Earth_tile.tex, ErrorCode = -9
(1453: 42991.08s 36699us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1454: 42991.14s 88468us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1455: 42991.14s 88757us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91615360, name=Earth_tile.tex, ErrorCode = -9
(1456: 42991.14s 89733us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1457: 42991.19s 143885us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1458: 42991.19s 144232us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91648256, name=Earth_tile.tex, ErrorCode = -9
(1459: 42991.20s 149191us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1460: 42991.25s 200881us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1461: 42991.25s 201151us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=91681152, name=Earth_tile.tex, ErrorCode = -9
(1462: 42991.25s 206430us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1463: 42996.55s 32042us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1464: 42996.56s 34604us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77239808, name=Earth_tile.tex, ErrorCode = -9
(1465: 42996.56s 40581us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1466: 42996.61s 92428us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1467: 42996.61s 92705us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77272704, name=Earth_tile.tex, ErrorCode = -9
(1468: 42996.61s 93693us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1469: 42996.67s 148490us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1470: 42996.67s 148778us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77305600, name=Earth_tile.tex, ErrorCode = -9
(1471: 42996.67s 154141us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1472: 42996.73s 209978us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1473: 42996.73s 210267us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77338496, name=Earth_tile.tex, ErrorCode = -9
(1474: 42996.74s 215406us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1475: 43034.88s 30984us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1476: 43034.89s 36291us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77108224, name=Earth_tile.tex, ErrorCode = -9
(1477: 43034.90s 49378us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1478: 43034.96s 107451us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1479: 43034.96s 107792us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77141120, name=Earth_tile.tex, ErrorCode = -9
(1480: 43034.96s 113123us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1481: 43035.02s 165741us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1482: 43035.02s 166040us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77174016, name=Earth_tile.tex, ErrorCode = -9
(1483: 43035.02s 171627us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1484: 43035.07s 223460us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1485: 43035.08s 223717us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77206912, name=Earth_tile.tex, ErrorCode = -9
(1486: 43035.08s 228789us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1487: 43074.60s 17276us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1488: 43074.60s 19880us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77634560, name=Earth_tile.tex, ErrorCode = -9
(1489: 43074.61s 27331us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1490: 43074.66s 79049us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1491: 43074.66s 79350us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77667456, name=Earth_tile.tex, ErrorCode = -9
(1492: 43074.67s 80428us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1493: 43074.72s 134159us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1494: 43074.72s 134430us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77700352, name=Earth_tile.tex, ErrorCode = -9
(1495: 43074.72s 139476us)(0x2FA0)[ERROR] Surface Tile Allocation Failed. w=256, h=256
(1496: 43074.78s 190421us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77733248, name=Earth_tile.tex, ErrorCode = -3
(1497: 43183.50s 35631us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77502976, name=Earth_tile.tex, ErrorCode = -3
(1498: 43183.55s 88360us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77535872, name=Earth_tile.tex, ErrorCode = -3
(1499: 43183.60s 139132us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77568768, name=Earth_tile.tex, ErrorCode = -3
(1500: 43183.65s 189914us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77601664, name=Earth_tile.tex, ErrorCode = -3
(1501: 43191.22s 4109us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=4342272, name=Earth_tile.tex, ErrorCode = -3
(1502: 43191.27s 56838us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=4375168, name=Earth_tile.tex, ErrorCode = -3
(1503: 43191.33s 107616us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=4408064, name=Earth_tile.tex, ErrorCode = -3
(1504: 43191.38s 158608us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=4440960, name=Earth_tile.tex, ErrorCode = -3
(1505: 43253.07s 46968us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77897728, name=Earth_tile.tex, ErrorCode = -3
(1506: 43253.12s 97735us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77930624, name=Earth_tile.tex, ErrorCode = -3
(1507: 43253.17s 148520us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77963520, name=Earth_tile.tex, ErrorCode = -3
(1508: 43253.22s 199296us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=77996416, name=Earth_tile.tex, ErrorCode = -3
(1509: 44829.58s 10486us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=129873408, name=Earth_tile.tex, ErrorCode = -3
(1510: 44829.63s 63207us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=129906304, name=Earth_tile.tex, ErrorCode = -3
(1511: 44829.68s 113993us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=129939200, name=Earth_tile.tex, ErrorCode = -3
(1512: 44829.73s 164759us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=129972096, name=Earth_tile.tex, ErrorCode = -3
(1513: 44855.43s 5134us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236588032, name=Earth_tile.tex, ErrorCode = -3
(1514: 44855.49s 57857us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236620928, name=Earth_tile.tex, ErrorCode = -3
(1515: 44855.54s 108639us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236653824, name=Earth_tile.tex, ErrorCode = -3
(1516: 44855.59s 159411us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236686720, name=Earth_tile.tex, ErrorCode = -3
(1517: 44883.32s 2149us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236324864, name=Earth_tile.tex, ErrorCode = -3
(1518: 44883.37s 55237us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236357760, name=Earth_tile.tex, ErrorCode = -3
(1519: 44883.42s 105782us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236390656, name=Earth_tile.tex, ErrorCode = -3
(1520: 44883.47s 156557us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236423552, name=Earth_tile.tex, ErrorCode = -3
(1521: 44892.92s 12253us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236456448, name=Earth_tile.tex, ErrorCode = -3
(1522: 44892.97s 64972us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236489344, name=Earth_tile.tex, ErrorCode = -3
(1523: 44893.02s 115753us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236522240, name=Earth_tile.tex, ErrorCode = -3
(1524: 44893.07s 166530us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236555136, name=Earth_tile.tex, ErrorCode = -3
(1525: 44964.35s 2776us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236193280, name=Earth_tile.tex, ErrorCode = -3
(1526: 44964.40s 55008us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236226176, name=Earth_tile.tex, ErrorCode = -3
(1527: 44964.45s 105780us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236259072, name=Earth_tile.tex, ErrorCode = -3
(1528: 44964.50s 156566us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236291968, name=Earth_tile.tex, ErrorCode = -3
(1529: 44987.61s 45354us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219876864, name=Earth_tile.tex, ErrorCode = -3
(1530: 44987.66s 98075us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219909760, name=Earth_tile.tex, ErrorCode = -3
(1531: 44987.71s 148852us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219942656, name=Earth_tile.tex, ErrorCode = -3
(1532: 44987.77s 199634us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219975552, name=Earth_tile.tex, ErrorCode = -3
(1533: 44994.98s 48270us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=235930112, name=Earth_tile.tex, ErrorCode = -3
(1534: 44995.03s 101002us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=235963008, name=Earth_tile.tex, ErrorCode = -3
(1535: 44995.08s 151759us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=235995904, name=Earth_tile.tex, ErrorCode = -3
(1536: 44995.13s 202541us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236028800, name=Earth_tile.tex, ErrorCode = -3
(1537: 44995.33s 20326us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219745280, name=Earth_tile.tex, ErrorCode = -3
(1538: 44995.39s 71097us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219778176, name=Earth_tile.tex, ErrorCode = -3
(1539: 44995.44s 121880us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219811072, name=Earth_tile.tex, ErrorCode = -3
(1540: 44995.49s 172655us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219843968, name=Earth_tile.tex, ErrorCode = -3
(1541: 45017.53s 12328us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=42764800, name=Earth_tile.tex, ErrorCode = -3
(1542: 45017.59s 65051us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=42797696, name=Earth_tile.tex, ErrorCode = -3
(1543: 45017.64s 115829us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=42830592, name=Earth_tile.tex, ErrorCode = -3
(1544: 45017.69s 166608us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=42863488, name=Earth_tile.tex, ErrorCode = -3
(1545: 45028.20s 45733us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219350528, name=Earth_tile.tex, ErrorCode = -3
(1546: 45028.25s 98457us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219383424, name=Earth_tile.tex, ErrorCode = -3
(1547: 45028.30s 149231us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219416320, name=Earth_tile.tex, ErrorCode = -3
(1548: 45028.35s 200009us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219449216, name=Earth_tile.tex, ErrorCode = -3
(1549: 45039.43s 3811us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=235798528, name=Earth_tile.tex, ErrorCode = -3
(1550: 45039.48s 55007us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=235831424, name=Earth_tile.tex, ErrorCode = -3
(1551: 45039.53s 105782us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=235864320, name=Earth_tile.tex, ErrorCode = -3
(1552: 45039.58s 156701us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=235897216, name=Earth_tile.tex, ErrorCode = -3
(1553: 45039.63s 207338us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236061696, name=Earth_tile.tex, ErrorCode = -3
(1554: 45039.68s 258115us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236094592, name=Earth_tile.tex, ErrorCode = -3
(1555: 45039.74s 308907us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236127488, name=Earth_tile.tex, ErrorCode = -3
(1556: 45039.79s 359673us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=236160384, name=Earth_tile.tex, ErrorCode = -3
(1557: 45056.44s 48322us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219218944, name=Earth_tile.tex, ErrorCode = -3
(1558: 45056.50s 101043us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219251840, name=Earth_tile.tex, ErrorCode = -3
(1559: 45056.55s 151819us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219284736, name=Earth_tile.tex, ErrorCode = -3
(1560: 45056.60s 202606us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219317632, name=Earth_tile.tex, ErrorCode = -3
(1561: 45073.15s 23494us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219087360, name=Earth_tile.tex, ErrorCode = -3
(1562: 45073.20s 74272us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219120256, name=Earth_tile.tex, ErrorCode = -3
(1563: 45073.25s 125045us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219153152, name=Earth_tile.tex, ErrorCode = -3
(1564: 45073.30s 175823us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219186048, name=Earth_tile.tex, ErrorCode = -3
(1565: 45085.24s 48325us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219482112, name=Earth_tile.tex, ErrorCode = -3
(1566: 45085.29s 99094us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219515008, name=Earth_tile.tex, ErrorCode = -3
(1567: 45085.34s 149867us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219547904, name=Earth_tile.tex, ErrorCode = -3
(1568: 45085.39s 1823us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219580800, name=Earth_tile.tex, ErrorCode = -3
(1569: 45120.69s 14419us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=218955776, name=Earth_tile.tex, ErrorCode = -3
(1570: 45120.74s 65188us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=218988672, name=Earth_tile.tex, ErrorCode = -3
(1571: 45120.79s 115966us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219021568, name=Earth_tile.tex, ErrorCode = -3
(1572: 45120.84s 166741us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=219054464, name=Earth_tile.tex, ErrorCode = -3
(1573: 45123.63s 7489us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38554112, name=Earth_tile.tex, ErrorCode = -3
(1574: 45123.69s 61187us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38587008, name=Earth_tile.tex, ErrorCode = -3
(1575: 45123.74s 111967us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38619904, name=Earth_tile.tex, ErrorCode = -3
(1576: 45123.79s 162744us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38652800, name=Earth_tile.tex, ErrorCode = -3
(1577: 45123.84s 13886us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38685696, name=Earth_tile.tex, ErrorCode = -3
(1578: 45123.89s 50209us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38718592, name=Earth_tile.tex, ErrorCode = -3
(1579: 45123.94s 100977us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38751488, name=Earth_tile.tex, ErrorCode = -3
(1580: 45123.99s 151758us)(0x2FA0)[ERROR] Failed to load a tile using ReadDDSSurface() offset=38784384, name=Earth_tile.tex, ErrorCode = -3
 

Bibi Uncle

50% Orbinaut, 50% Developer
Addon Developer
Joined
Aug 12, 2010
Messages
192
Reaction score
0
Points
0
Location
Québec, QC
The touch zone markings are now finished. You can define them as TD_LENGTH in the config file. The default value is 400m. Also, the lights are only rendered during the night (I disable this feature in my debug sessions, so some future screens may have sunlight).

touchzone.jpg


@Donamy
Your problem looks like a failling RAM (I had this problem recently...). Or, your Earth.tex is corrupted. However, I did not read the tile manager's code, so it may be a bug too. jarmonik is better placed than me to answer you.
 

eddievhfan1984

Donator
Donator
Joined
Jul 30, 2011
Messages
46
Reaction score
0
Points
0
Add a word 'mutable' in a front of 'surfBltTgt' in GraphicsAPI.h

@Bibi Uncle:
Are you working the PAPI lights or shall I do them ?

Did the trick, until it started the final code compilation...

1>------ Build started: Project: D3D9Client, Configuration: Release Win32 ------
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5): warning MSB8012: TargetPath(C:\Users\Kyle Tekaucic\Orbiter\Orbitersdk\D3D9Client\Release\D3D9Client.dll) does not match the Linker's OutputFile property value (C:\Users\Kyle Tekaucic\Orbiter\Modules\Plugin\D3D9Client.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).
1>LINK : fatal error LNK1181: cannot open input file 'd3dx9.lib'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
 

orb

O-F Administrator,
News Reporter
Joined
Oct 30, 2009
Messages
14,020
Reaction score
4
Points
0
1>LINK : fatal error LNK1181: cannot open input file 'd3dx9.lib'
Did you provide the correct path to DirectX SDK Lib folder for linker?

The warning is not any error in case of Orbiter. The TargetPath doesn't need to be the same as OutputFile.
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,651
Reaction score
785
Points
128
I ran a scenario from Launch to docking real time, about 4 hours. In D3D9, while the autopilot was attempting to sync orbit, the frame rates slowed way down, 67 to 1 or 2 FPS, finally crashing. It runs flawlessly in the regular Orbiter. Here is the errors I got in the HTML:

I am sorry to hear that. It looks like the computer run out of video memory but I don't know what caused it. The first line in the log is 715 and I don't know what happened before that. How much texture memory you have ? You can toggle video memory statistics display on and off in D3D9 by pressing [Crtl+Shift+C]. It would be good idea to check it from time to time.

Here is a list of things what I can do:

1. Save a scenario after detecting a critical error.
2. Stop loading surface tiles when the memory runs low.
3. Speed up surface tile unallocation.
4. Reduce base tile resolution if the memory is running low.

You could set these flags to '1' from the D3D9Client.cfg and see if they have any effect (good or bad).
LoadTexturesInSystemMem = 1 // Textures are moved in a video memory when needed.
ManagedTiles = 1
 

eddievhfan1984

Donator
Donator
Joined
Jul 30, 2011
Messages
46
Reaction score
0
Points
0
Did you provide the correct path to DirectX SDK Lib folder for linker?

The warning is not any error in case of Orbiter. The TargetPath doesn't need to be the same as OutputFile.

Well, when taking care of the original compiler problems, I changed both the Include and Lib directories in the project file to use the June 2010 SDK (which I have) instead of the February version. And I know the mismatched TargetPath and OutputFile is not a big deal. So I have absolutely no clue what's going on. The file's in the place it's supposed to be, but the error message doesn't offer any more specifics. Unless there's some differences in the June SDK that might cause problems... :p
 

luki1997a

Active member
Joined
Dec 9, 2010
Messages
314
Reaction score
0
Points
31
Location
Biłgoraj
good job w/ these runway lights! Would it be possible to add a little light source to every runway light? Sorry if it would be a problem, but it's only sugesstion;)

:cheers:and:hailprobe:
 

orb

O-F Administrator,
News Reporter
Joined
Oct 30, 2009
Messages
14,020
Reaction score
4
Points
0
Well, when taking care of the original compiler problems, I changed both the Include and Lib directories in the project file to use the June 2010 SDK (which I have) instead of the February version.
So, is the path to DirectX library folder set as "<Installation path of DirectX SDK>\Lib\x86", which contains the d3dx9.lib file?
 

jarmonik

Well-known member
Orbiter Contributor
Addon Developer
Beta Tester
Joined
Mar 28, 2008
Messages
2,651
Reaction score
785
Points
128
Top