Commit c8a08f40 by Yuly Novikov Committed by Commit Bot

Make failure to create Debug D3D11 device a warning instead of error

Tests started failing after directing ERR to Platform BUG=angleproject:1660, angleproject:1878 Change-Id: I3e6d99bee266c0e7fa541c6e19be7253dcc01cdf Reviewed-on: https://chromium-review.googlesource.com/438819Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent 8897afa1
...@@ -732,7 +732,7 @@ egl::Error Renderer11::initializeD3DDevice() ...@@ -732,7 +732,7 @@ egl::Error Renderer11::initializeD3DDevice()
if (!mDevice || FAILED(result)) if (!mDevice || FAILED(result))
{ {
ERR() << "Failed creating Debug D3D11 device - falling back to release runtime."; WARN() << "Failed creating Debug D3D11 device - falling back to release runtime.";
} }
if (!mDevice || FAILED(result)) if (!mDevice || FAILED(result))
......
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