Commit 513095e9 by Jamie Madill Committed by Commit Bot

Disable AMD OpenGL testing on Windows ANGLE tests.

Our current CI testing for AMD is quite out-of-date and unsupported. If necessary we could skip based on a GPU device ID. Bug: angleproject:5123 Change-Id: Idf919a330aa9903ad80aba38f745d4a35d1b501e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2446092Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent c6dc9d73
......@@ -377,8 +377,11 @@ bool IsConfigWhitelisted(const SystemInfo &systemInfo, const PlatformParameters
{
case EGL_PLATFORM_ANGLE_TYPE_D3D9_ANGLE:
case EGL_PLATFORM_ANGLE_TYPE_D3D11_ANGLE:
case EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE:
return true;
case EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE:
// Note we disable AMD OpenGL testing on Windows due to using a very old and
// outdated card with many driver bugs. See http://anglebug.com/5123
return !IsAMD();
case EGL_PLATFORM_ANGLE_TYPE_VULKAN_ANGLE:
if (IsARM64())
{
......
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