Hi Fname,
No sorry if I was not clear could you check the value of msaaBuffers, the function itself returns a boolean, but the value we are interested in is the value it writes to msaaBuffers.
[scode lang="{language}"]EGLint msaaBuffers;
eglGetConfigAttrib(eglDisplay, eglConfig, EGL_SAMPLE_BUFFERS, &msaaBuffers);
if (msaaBuffers == 0)
{
MessageBox(0, _T(“msaa buffer has not been created”), ERROR_TITLE, MB_OK | MB_ICONEXCLAMATION);
return false;
}[/scode]
More info on the function here: https://www.khronos.org/registry/egl/sdk/docs/man/html/eglGetConfigAttrib.xhtml
Thanks,
Shaun