Commit a8d4457c by Jamie Madill Committed by Commit Bot

Change shader compile failures into an info message.

This reduces spam in our unit tests. Speeds up test execution. Bug: angleproject:3162 Change-Id: I286a18b3ce862c4e4155076b2ee3f93c9db2eb33 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2447041 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarCourtney Goeltzenleuchter <courtneygo@google.com> Reviewed-by: 's avatarTim Van Patten <timvp@google.com>
parent d3aa1e9c
...@@ -390,7 +390,7 @@ void Shader::resolveCompile() ...@@ -390,7 +390,7 @@ void Shader::resolveCompile()
if (!mCompilingState->compileEvent->getResult()) if (!mCompilingState->compileEvent->getResult())
{ {
mInfoLog += sh::GetInfoLog(compilerHandle); mInfoLog += sh::GetInfoLog(compilerHandle);
WARN() << std::endl << mInfoLog; INFO() << std::endl << mInfoLog;
mState.mCompileStatus = CompileStatus::NOT_COMPILED; mState.mCompileStatus = CompileStatus::NOT_COMPILED;
return; return;
} }
......
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