From: Chia-I Wu Date: Wed, 19 Feb 2014 04:57:15 +0000 (+0800) Subject: Revert "egl: Unhide functionality in _eglInitContext()" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc97e54d97ab9a3816a03a656c1ed530a046da0d;p=mesa.git Revert "egl: Unhide functionality in _eglInitContext()" This reverts commit 1456ed85f0ed8b9c9f0abd6bd389a089fa3824b2. _eglInitResource can and is supposed to be called on subclass objects. Acked-by: Juha-Pekka Heikkila --- diff --git a/src/egl/main/eglcontext.c b/src/egl/main/eglcontext.c index 99d1c3e7595..79a92c7c4a6 100644 --- a/src/egl/main/eglcontext.c +++ b/src/egl/main/eglcontext.c @@ -366,8 +366,7 @@ _eglInitContext(_EGLContext *ctx, _EGLDisplay *dpy, _EGLConfig *conf, return EGL_FALSE; } - memset(ctx, 0, sizeof(_EGLContext)); - _eglInitResource(&ctx->Resource, sizeof(_EGLResource), dpy); + _eglInitResource(&ctx->Resource, sizeof(*ctx), dpy); ctx->ClientAPI = api; ctx->Config = conf; ctx->WindowRenderBuffer = EGL_NONE;