From: Brian Paul Date: Tue, 17 May 2005 13:21:46 +0000 (+0000) Subject: fix pbuffer sample code X-Git-Tag: mesa-7.8~9201 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a0cb726d1e8dbd8cdb024d9e45169ad8c440777;p=platform%2Fupstream%2Fmesa.git fix pbuffer sample code --- diff --git a/src/egl/drivers/demo/demo.c b/src/egl/drivers/demo/demo.c index 5916c88..9b75195 100644 --- a/src/egl/drivers/demo/demo.c +++ b/src/egl/drivers/demo/demo.c @@ -81,7 +81,7 @@ demoInitialize(_EGLDriver *drv, EGLDisplay dpy, EGLint *major, EGLint *minor) _eglSetConfigAttrib(&config, EGL_STENCIL_SIZE, 8); } _eglSetConfigAttrib(&config, EGL_SURFACE_TYPE, - (EGL_WINDOW_BIT | EGL_PIXMAP_BIT | EGL_PBUFFER_BIT)); + (EGL_WINDOW_BIT | EGL_PIXMAP_BIT | EGL_PBUFFER_BIT)); _eglAddConfig(disp, &config); } @@ -221,17 +221,14 @@ demoCreatePbufferSurface(_EGLDriver *drv, EGLDisplay dpy, EGLConfig config, if (!surf) return EGL_NO_SURFACE; - if (_eglInitPbufferSurface(drv, dpy, config, attrib_list, &surf->Base)) { + if (_eglInitPbufferSurface(&surf->Base, drv, dpy, config, attrib_list) + == EGL_NO_SURFACE) { free(surf); return EGL_NO_SURFACE; } /* a real driver would allocate the pbuffer memory here */ - /* insert into hash table */ - _eglSaveSurface(&surf->Base); - assert(surf->Base.Handle); - return surf->Base.Handle; }