diff options
| -rw-r--r-- | pts-core/pts-run-benchmark.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/pts-core/pts-run-benchmark.php b/pts-core/pts-run-benchmark.php index 25114eb..9f2b177 100644 --- a/pts-core/pts-run-benchmark.php +++ b/pts-core/pts-run-benchmark.php @@ -233,7 +233,16 @@ else if($SAVE_RESULTS) { - $test_notes = pts_process_running_string(array("Compiz", "Firefox")); + $test_notes = pts_process_running_string(array("Compiz", "Firefox", "Thunderbird")); + + if(defined("TEST_GRAPHICS")) + { + $aa_level = graphics_antialiasing_level(); + $af_level = graphics_anisotropic_level(); + + if(!empty($aa_level) && !empty($af_level)) + $test_notes .= " \nAntialiasing: $aa_level Anisotropic Filtering: $af_level."; + } $id = pts_request_new_id(); $RESULTS->setXslBinding("pts-results-viewer.xsl"); |
