summaryrefslogtreecommitdiffstats
path: root/o3d/tests/selenium
diff options
context:
space:
mode:
authorvangelis@google.com <vangelis@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-04 01:47:00 +0000
committervangelis@google.com <vangelis@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-04 01:47:00 +0000
commitcfdff328140615ce383ad981dc5c8e4ea82cb0f4 (patch)
tree7d67efa544b8365f2760d6d2edb38455a47b0c86 /o3d/tests/selenium
parenta13e0ee509d4bcbc3cb44b689d0b7575fe1bd031 (diff)
downloadchromium_src-cfdff328140615ce383ad981dc5c8e4ea82cb0f4.zip
chromium_src-cfdff328140615ce383ad981dc5c8e4ea82cb0f4.tar.gz
chromium_src-cfdff328140615ce383ad981dc5c8e4ea82cb0f4.tar.bz2
* Raising the pdiff threshold for the beachdemo test to correct pulse failure (fails with the same diff on my PC)
* Added comment about the valid values for the min, mag and mip filters in sampler.idl * Cleaned up some typos in texture.idl * Changed the texture-set-test to use POINT filter for min and mag to avoid issues with h/w that doesn't support linear filtering of floating point textures * Bumped up rev for o3d_assets to include new reference image for texture-set-test Review URL: http://codereview.chromium.org/118212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17582 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/tests/selenium')
-rw-r--r--o3d/tests/selenium/sample_list.txt2
-rw-r--r--o3d/tests/selenium/tests/texture-set-test.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/o3d/tests/selenium/sample_list.txt b/o3d/tests/selenium/sample_list.txt
index 136cd5a..60c4bf2 100644
--- a/o3d/tests/selenium/sample_list.txt
+++ b/o3d/tests/selenium/sample_list.txt
@@ -59,7 +59,7 @@
medium 2d screenshot pdiff_threshold(41200)
medium animation
large animated-scene screenshot timeout(45000) pdiff_threshold(200)
-large beachdemo/beachdemo screenshot timeout(120000) pdiff_threshold(100) downsample(1) except(*iexplore)
+large beachdemo/beachdemo screenshot timeout(120000) pdiff_threshold(1900) downsample(1) except(*iexplore)
medium canvas screenshot pdiff_threshold(4700) pdiff_threshold_mac(14600)
medium canvas-fonts screenshot pdiff_threshold(1100) pdiff_threshold_mac(21900)
medium canvas-texturedraw
diff --git a/o3d/tests/selenium/tests/texture-set-test.html b/o3d/tests/selenium/tests/texture-set-test.html
index 88f8619..a58d024 100644
--- a/o3d/tests/selenium/tests/texture-set-test.html
+++ b/o3d/tests/selenium/tests/texture-set-test.html
@@ -158,8 +158,8 @@ function initStep2(clientElements) {
var sampler = g_pack.createObject('Sampler');
samplerParam.value = sampler;
- sampler.magFilter = g_o3d.Sampler.NONE;
- sampler.minFilter = g_o3d.Sampler.NONE;
+ sampler.magFilter = g_o3d.Sampler.POINT;
+ sampler.minFilter = g_o3d.Sampler.POINT;
sampler.mipFilter = g_o3d.Sampler.NONE;
sampler.addressModeU = g_o3d.Sampler.CLAMP;
sampler.addressModeV = g_o3d.Sampler.CLAMP;