summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-run.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-11-17 20:13:54 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-11-17 20:13:54 -0500
commitc525d5cbb58d92e9d97147f510cc6c6973e6ef51 (patch)
tree774120d86880f0fca3f8264c0f034c7684ef5133 /pts-core/functions/pts-functions-run.php
parent5fc0dfda5f28d34d276af5659618f6248a401277 (diff)
downloadphoronix-test-suite-upstream-c525d5cbb58d92e9d97147f510cc6c6973e6ef51.tar.gz
phoronix-test-suite-upstream-c525d5cbb58d92e9d97147f510cc6c6973e6ef51.tar.xz
phoronix-test-suite-upstream-c525d5cbb58d92e9d97147f510cc6c6973e6ef51.zip
pts-core: Standardize hw_gpu_* functions
Diffstat (limited to 'pts-core/functions/pts-functions-run.php')
-rw-r--r--pts-core/functions/pts-functions-run.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/pts-core/functions/pts-functions-run.php b/pts-core/functions/pts-functions-run.php
index d64e0d2..c21ecdd 100644
--- a/pts-core/functions/pts-functions-run.php
+++ b/pts-core/functions/pts-functions-run.php
@@ -231,8 +231,8 @@ function pts_generate_test_notes($test_type)
if($test_type == "Graphics" || $test_type == "System")
{
- $aa_level = graphics_antialiasing_level();
- $af_level = graphics_anisotropic_level();
+ $aa_level = hw_gpu_aa_level();
+ $af_level = hw_gpu_af_level();
if(!empty($aa_level))
{
@@ -695,7 +695,7 @@ function pts_global_auto_tags($extra_attr = null)
array_push($tags_array, "VIA");
}
- $gpu_type = graphics_processor_string();
+ $gpu_type = hw_gpu_string();
if(strpos($cpu_type, "ATI") !== false)
{
array_push($tags_array, "ATI");
@@ -750,7 +750,7 @@ function pts_auto_process_test_option($identifier, &$option_names, &$option_valu
switch($identifier)
{
case "auto-resolution":
- $available_video_modes = xrandr_available_modes();
+ $available_video_modes = hw_gpu_xrandr_available_modes();
$format_name = $option_names[0];
$format_value = $option_values[0];
$option_names = array();