Commit 0baaca68 by Corentin Wallez

EGLContextCompatTest: fix typo in WindowDifferentConfig

It was incorrectly calling the pbuffer function. BUG=angleproject:891 Change-Id: I6959540262a8ef80886e41da795f9e4aff218535 Reviewed-on: https://chromium-review.googlesource.com/299441Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Tested-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 1d91a7b1
...@@ -253,7 +253,8 @@ TEST_P(EGLContextCompatibilityTest, WindowDifferentConfig) ...@@ -253,7 +253,8 @@ TEST_P(EGLContextCompatibilityTest, WindowDifferentConfig)
for (size_t j = 0; j < mConfigs.size(); j++) for (size_t j = 0; j < mConfigs.size(); j++)
{ {
EGLConfig config2 = mConfigs[j]; EGLConfig config2 = mConfigs[j];
testPbufferCompatibility(config1, config2, areConfigsCompatible(config1, config2, EGL_WINDOW_BIT)); testWindowCompatibility(config1, config2,
areConfigsCompatible(config1, config2, EGL_WINDOW_BIT));
} }
} }
} }
......
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