diff options
author | Mike Klein <mtklein@chromium.org> | 2017-03-27 14:28:07 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-03-27 19:16:59 +0000 |
commit | b338484d23d6fa4d6726361440962e75ec5855e0 (patch) | |
tree | 77baa4b18ff2bcfb7306eed8dff56eb5c7c7329d /tools/gpu/gl | |
parent | b436655ad5c40a04b65c1642d0a0e781ce296c96 (diff) |
quiet some annoying logging in unit tests
Noticed all these while adding some unit test support to ok.
Change-Id: Ie33b96da95840628657211cb28b2134fd314a48a
Reviewed-on: https://skia-review.googlesource.com/10202
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'tools/gpu/gl')
-rw-r--r-- | tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp b/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp index 56bc5da3d6..82888d8984 100644 --- a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp +++ b/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp @@ -108,8 +108,6 @@ static void load_command_buffer_functions() { gfCreateContext && gfDestroyContext && gfMakeCurrent && gfSwapBuffers && gfGetProcAddress; - } else { - SkDebugf("Could not load %s.\n", libName); } } } @@ -159,8 +157,6 @@ CommandBufferGLTestContext::CommandBufferGLTestContext(CommandBufferGLTestContex load_command_buffer_once(); if (!gfFunctionsLoadedSuccessfully) { - static SkOnce once; - once([] { SkDebugf("Command Buffer: Could not load EGL functions.\n"); }); return; } |