Commit aaaf93a3 by Nicolas Capens Committed by Nicolas Capens

Disable accidentally enabled OpenGL logging.

This reverts part of https://swiftshader-review.googlesource.com/21108 Bug b/73656151 Change-Id: I35c91cb5b28ede65eadebcb5e8141be4cf3f2e0e Reviewed-on: https://swiftshader-review.googlesource.com/c/21368Tested-by: 's avatarNicolas Capens <nicolascapens@google.com> Reviewed-by: 's avatarShannon Woods <shannonwoods@google.com>
parent 3b5e426b
......@@ -40,7 +40,7 @@ namespace es
#else
static void output(const char *format, va_list vararg)
{
if(true)
if(false)
{
static FILE* file = nullptr;
if(!file)
......@@ -51,7 +51,7 @@ namespace es
if(file)
{
vfprintf(file, format, vararg);
fflush(file);
// fflush(file);
}
}
}
......
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