Commit 42e9e599 by Corentin Wallez

ProgramBinaryTest: use override where applicable

BUG=None Change-Id: Ibb3c6ea919c34e967aaa5d475d6e05249d2ee6aa Reviewed-on: https://chromium-review.googlesource.com/309810 Tryjob-Request: Corentin Wallez <cwallez@chromium.org> Tested-by: 's avatarCorentin Wallez <cwallez@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 0984d111
......@@ -28,7 +28,7 @@ class ProgramBinaryTest : public ANGLETest
setConfigAlphaBits(8);
}
virtual void SetUp()
void SetUp() override
{
ANGLETest::SetUp();
......@@ -63,7 +63,7 @@ class ProgramBinaryTest : public ANGLETest
ASSERT_GL_NO_ERROR();
}
virtual void TearDown()
void TearDown() override
{
glDeleteProgram(mProgram);
glDeleteBuffers(1, &mBuffer);
......@@ -255,7 +255,7 @@ class ProgramBinaryTransformFeedbackTest : public ANGLETest
ASSERT_GL_NO_ERROR();
}
virtual void TearDown()
void TearDown() override
{
glDeleteProgram(mProgram);
......
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