diff options
author | Emil Velikov <[email protected]> | 2017-06-20 15:40:28 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-06-26 12:41:00 +0100 |
commit | c58af5cbb295760687b23428f8ac240459e5cf56 (patch) | |
tree | 0bf1c53aedde3010b4254c12531c6249e85d13ca /src/egl/main/eglcontext.c | |
parent | d42b09580a5270e8906dad4b923f320d1de18167 (diff) |
egl: fold _eglError() + return EGL_FALSE
The function _eglError() already explicitly returns EGL_FALSE,
explicitly to simplify the callers. Make use of it.
While EGL_FALSE is numerically identical to false, NULL, EGL_NO_FOO,
storage is not the same so we cannot use it for "everything".
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/egl/main/eglcontext.c')
-rw-r--r-- | src/egl/main/eglcontext.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/egl/main/eglcontext.c b/src/egl/main/eglcontext.c index 05cc523c8d1..df8b45c7bd6 100644 --- a/src/egl/main/eglcontext.c +++ b/src/egl/main/eglcontext.c @@ -489,10 +489,8 @@ _eglInitContext(_EGLContext *ctx, _EGLDisplay *dpy, _EGLConfig *conf, const EGLenum api = eglQueryAPI(); EGLint err; - if (api == EGL_NONE) { - _eglError(EGL_BAD_MATCH, "eglCreateContext(no client API)"); - return EGL_FALSE; - } + if (api == EGL_NONE) + return _eglError(EGL_BAD_MATCH, "eglCreateContext(no client API)"); _eglInitResource(&ctx->Resource, sizeof(*ctx), dpy); ctx->ClientAPI = api; |