|
91 | 91 | my $hasVBO = 0;
|
92 | 92 | my $hasFragProg = 0;
|
93 | 93 | my $hasImagePointer = 0;
|
94 |
| -my $idleTime = time(); |
| 94 | +my $idleTime = $hasHires ? gettimeofday() : time(); |
95 | 95 | my $idleSecsMax = 5;
|
96 | 96 | my $er;
|
97 | 97 |
|
@@ -791,7 +791,9 @@ sub ourInitShaders
|
791 | 791 | sub cbRenderScene
|
792 | 792 | {
|
793 | 793 | # Quit if inactive
|
794 |
| - if ($idleSecsMax < (time()-$idleTime)) |
| 794 | + my $time = $hasHires ? gettimeofday() : time(); |
| 795 | + my $time_to_exit = $idleSecsMax - ($time-$idleTime); |
| 796 | + if ($time_to_exit <= 0 ) |
795 | 797 | {
|
796 | 798 | print "Idle timeout; completing test\n";
|
797 | 799 | ourCleanup();
|
@@ -989,6 +991,10 @@ sub cbRenderScene
|
989 | 991 | # But, for fun, let's make the text partially transparent too.
|
990 | 992 | glColor4f(0.6,1.0,0.6,.75);
|
991 | 993 |
|
| 994 | + $buf = sprintf "TIME TO EXIT: %.1fs", $time_to_exit; |
| 995 | + my $bufwidth = 6 * length $buf; |
| 996 | + glRasterPos2i($Window_Width-4-$bufwidth,2); ourPrintString(GLUT_BITMAP_HELVETICA_12,$buf); |
| 997 | + |
992 | 998 | # Render our various display mode settings.
|
993 | 999 | $buf = sprintf "Mode: %s", $TexModesStr[$Curr_TexMode];
|
994 | 1000 | glRasterPos2i(2,2); ourPrintString(GLUT_BITMAP_HELVETICA_12,$buf);
|
@@ -1321,7 +1327,7 @@ sub cbKeyPressed
|
1321 | 1327 | printf "KP: No action for %d.\n", $key;
|
1322 | 1328 | }
|
1323 | 1329 |
|
1324 |
| - $idleTime = time(); |
| 1330 | + $idleTime = $hasHires ? gettimeofday() : time(); |
1325 | 1331 | }
|
1326 | 1332 |
|
1327 | 1333 | # ------
|
@@ -1360,7 +1366,7 @@ sub cbSpecialKeyPressed
|
1360 | 1366 | printf "SKP: No action for %d.\n", $key;
|
1361 | 1367 | }
|
1362 | 1368 |
|
1363 |
| - $idleTime = time(); |
| 1369 | + $idleTime = $hasHires ? gettimeofday() : time(); |
1364 | 1370 | }
|
1365 | 1371 |
|
1366 | 1372 | # ------
|
@@ -1466,7 +1472,7 @@ sub cbMouseClick
|
1466 | 1472 | print "\n";
|
1467 | 1473 | }
|
1468 | 1474 |
|
1469 |
| - $idleTime = time(); |
| 1475 | + $idleTime = $hasHires ? gettimeofday() : time(); |
1470 | 1476 | }
|
1471 | 1477 |
|
1472 | 1478 | sub GetKeyModifier
|
@@ -1497,7 +1503,7 @@ sub cbResizeScene
|
1497 | 1503 | $Window_Width = $Width;
|
1498 | 1504 | $Window_Height = $Height;
|
1499 | 1505 |
|
1500 |
| - $idleTime = time(); |
| 1506 | + $idleTime = $hasHires ? gettimeofday() : time(); |
1501 | 1507 | }
|
1502 | 1508 |
|
1503 | 1509 | sub cbWindowStat
|
|
0 commit comments