Lines Matching defs:msg
178 _eglCheckDisplay(_EGLDisplay *disp, const char *msg)
181 _eglError(EGL_BAD_DISPLAY, msg);
185 _eglError(EGL_NOT_INITIALIZED, msg);
193 _eglCheckSurface(_EGLDisplay *disp, _EGLSurface *surf, const char *msg)
195 if (!_eglCheckDisplay(disp, msg))
198 _eglError(EGL_BAD_SURFACE, msg);
206 _eglCheckContext(_EGLDisplay *disp, _EGLContext *context, const char *msg)
208 if (!_eglCheckDisplay(disp, msg))
211 _eglError(EGL_BAD_CONTEXT, msg);
219 _eglCheckConfig(_EGLDisplay *disp, _EGLConfig *conf, const char *msg)
221 if (!_eglCheckDisplay(disp, msg))
224 _eglError(EGL_BAD_CONFIG, msg);
232 _eglCheckSync(_EGLDisplay *disp, _EGLSync *s, const char *msg)
234 if (!_eglCheckDisplay(disp, msg))
237 _eglError(EGL_BAD_PARAMETER, msg);