Commit 95660b62 authored by nsylvain@chromium.org's avatar nsylvain@chromium.org

On virtual 10.5 MultisamplingDisabled also fails.

TBR=zmo
Review URL: https://chromiumcodereview.appspot.com/10073034

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132345 0039d316-1c4b-4281-b951-d872f2087c98
parent 2306db49
...@@ -308,6 +308,16 @@ class WebGLMultisamplingTest : public GpuFeatureTest { ...@@ -308,6 +308,16 @@ class WebGLMultisamplingTest : public GpuFeatureTest {
}; };
IN_PROC_BROWSER_TEST_F(WebGLMultisamplingTest, MultisamplingDisabled) { IN_PROC_BROWSER_TEST_F(WebGLMultisamplingTest, MultisamplingDisabled) {
#if defined(OS_MACOSX)
// Multisampling fails on virtualized mac os.
GPUTestBotConfig test_bot;
test_bot.LoadCurrentConfig(NULL);
const std::vector<uint32>& gpu_vendor = test_bot.gpu_vendor();
if (gpu_vendor.size() == 1 && gpu_vendor[0] == 0x15AD)
return;
#endif
const FilePath url(FILE_PATH_LITERAL("feature_multisampling.html")); const FilePath url(FILE_PATH_LITERAL("feature_multisampling.html"));
RunTest(url, "\"FALSE\"", true); RunTest(url, "\"FALSE\"", true);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment