diff options
author | Chia-I Wu <[email protected]> | 2010-01-31 14:32:31 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-01-31 14:46:14 +0800 |
commit | 216925ccd122a06505dafae425323e3ac858f80e (patch) | |
tree | 4df3b9eeabb483dd6696df496c56647a9cedc62d /src/egl/drivers | |
parent | d69242be55091e53b0ae2cfa6282790ce1862f29 (diff) |
egl: Initialize display configs with the display.
This changes _eglInitConfig to take the display as its argument.
Diffstat (limited to 'src/egl/drivers')
-rw-r--r-- | src/egl/drivers/glx/egl_glx.c | 2 | ||||
-rw-r--r-- | src/egl/drivers/xdri/egl_xdri.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/drivers/glx/egl_glx.c b/src/egl/drivers/glx/egl_glx.c index 82d256c52d7..8e6b5b07a2f 100644 --- a/src/egl/drivers/glx/egl_glx.c +++ b/src/egl/drivers/glx/egl_glx.c @@ -422,7 +422,7 @@ create_configs(_EGLDisplay *dpy, struct GLX_egl_display *GLX_dpy, EGLBoolean ok; memset(&template, 0, sizeof(template)); - _eglInitConfig(&template.Base, id); + _eglInitConfig(&template.Base, dpy, id); if (GLX_dpy->have_fbconfig) ok = convert_fbconfig(GLX_dpy->dpy, GLX_dpy->fbconfigs[i], &template); else diff --git a/src/egl/drivers/xdri/egl_xdri.c b/src/egl/drivers/xdri/egl_xdri.c index 2d868cbeea6..68e659eb276 100644 --- a/src/egl/drivers/xdri/egl_xdri.c +++ b/src/egl/drivers/xdri/egl_xdri.c @@ -171,7 +171,6 @@ convert_config(_EGLConfig *conf, EGLint id, const __GLcontextModes *m) { EGLint val; - _eglInitConfig(conf, id); if (!_eglConfigFromContextModesRec(conf, m, EGL_OPENGL_BIT, EGL_OPENGL_BIT)) return EGL_FALSE; @@ -221,6 +220,7 @@ create_configs(_EGLDisplay *disp, const __GLcontextModes *m, EGLint first_id) _EGLConfig conf; EGLint rb; + _eglInitConfig(&conf, disp, id); if (!convert_config(&conf, id, m)) continue; if (m->doubleBufferMode) { |