EGL logging

This commit is contained in:
Nick Fisher
2024-03-07 16:44:03 +11:00
parent c34a1b0370
commit 1fccaf1990

View File

@@ -135,6 +135,7 @@ FlutterEGLContext::FlutterEGLContext(
// find an opaque config // find an opaque config
if (!eglChooseConfig(_eglDisplay, configAttribs, &_eglConfig, 1, if (!eglChooseConfig(_eglDisplay, configAttribs, &_eglConfig, 1,
&configsCount)) { &configsCount)) {
std::cout << "Failed to find EGL config" << std::endl;
return; return;
} }