From dc97e54d97ab9a3816a03a656c1ed530a046da0d Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Wed, 19 Feb 2014 12:57:15 +0800 Subject: [PATCH] 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 --- src/egl/main/eglcontext.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; -- 2.30.2