Commit 39e7bc05 by Jamie Madill

Fix "Reize" to "Re*s*izeWindow".

BUG=angle:730 Change-Id: I7d4e5a36cec2b3a5c61ae768ec4c816553031baf Reviewed-on: https://chromium-review.googlesource.com/213292Reviewed-by: 's avatarBrandon Jones <bajones@chromium.org> Tested-by: 's avatarJamie Madill <jmadill@chromium.org>
parent db74f18e
...@@ -24,7 +24,7 @@ EGLNativeDisplayType ANGLETest::mNativeDisplay = 0; ...@@ -24,7 +24,7 @@ EGLNativeDisplayType ANGLETest::mNativeDisplay = 0;
void ANGLETest::SetUp() void ANGLETest::SetUp()
{ {
ReizeWindow(mWidth, mHeight); ResizeWindow(mWidth, mHeight);
if (!createEGLContext()) if (!createEGLContext())
{ {
FAIL() << "egl context creation failed."; FAIL() << "egl context creation failed.";
......
...@@ -43,7 +43,7 @@ class ANGLETest : public testing::Test ...@@ -43,7 +43,7 @@ class ANGLETest : public testing::Test
public: public:
static bool InitTestWindow(); static bool InitTestWindow();
static bool DestroyTestWindow(); static bool DestroyTestWindow();
static bool ReizeWindow(int width, int height); static bool ResizeWindow(int width, int height);
protected: protected:
virtual void SetUp(); virtual void SetUp();
......
...@@ -75,7 +75,7 @@ bool ANGLETest::DestroyTestWindow() ...@@ -75,7 +75,7 @@ bool ANGLETest::DestroyTestWindow()
return true; return true;
} }
bool ANGLETest::ReizeWindow(int width, int height) bool ANGLETest::ResizeWindow(int width, int height)
{ {
RECT windowRect; RECT windowRect;
if (!GetWindowRect(mNativeWindow, &windowRect)) if (!GetWindowRect(mNativeWindow, &windowRect))
......
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