diff options
author | Kristian Høgsberg <[email protected]> | 2007-11-06 11:22:59 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2007-11-06 11:23:27 -0500 |
commit | 559ae0ab1b68682716b39d93402a6b9e90c88127 (patch) | |
tree | 50c08961f9229e9649d7cedf9426b4345551fad7 /src/glx | |
parent | cd59600c7b6cba42baba208e74d783fbade93356 (diff) |
Pass the visual id to XF86DRICreateContextWithConfig(), not fbconfig id.
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/x11/glxcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/x11/glxcmds.c b/src/glx/x11/glxcmds.c index cbc566e917a..80d46f6b23e 100644 --- a/src/glx/x11/glxcmds.c +++ b/src/glx/x11/glxcmds.c @@ -405,7 +405,7 @@ CreateContext(Display *dpy, XVisualInfo *vis, if (!XF86DRICreateContextWithConfig(dpy, psc->scr, - mode->fbconfigID, + mode->visualID, &gc->hwContextID, &hwContext)) /* gah, handle this better */ return NULL; |