Commit 0a6752e3 by Jamie Madill Committed by Commit Bot

Use default window size in RenderTestParams.

This fixes a D3D11 runtime warning in perf test init. We don't see it on the bots because we don't typically enable the D3D11 runtime. BUG=angleproject:2188 Change-Id: I512db7d5a34204f1d94e28d80cadb18f9b17e55f Reviewed-on: https://chromium-review.googlesource.com/724738 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent c514348e
......@@ -78,8 +78,8 @@ struct RenderTestParams : public angle::PlatformParameters
{
virtual std::string suffix() const;
EGLint windowWidth;
EGLint windowHeight;
EGLint windowWidth = 64;
EGLint windowHeight = 64;
};
class ANGLERenderTest : public ANGLEPerfTest
......
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