diff options
author | Kristian Høgsberg <[email protected]> | 2008-03-08 19:02:10 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2008-03-08 19:10:21 -0500 |
commit | 425f9ed44e576aef27f7ab98968043f7f180d0fd (patch) | |
tree | 4ec32246623ecb9eb4d10835dca84b74d4115825 /src/glx/x11/glxcmds.c | |
parent | f585cb29b827104b9ea04cb11e3e3087ef1684c0 (diff) |
Abstract __DRIdisplayPrivateRec away in dri_glx.c.
This patch moves __DRIdisplayPrivateRec definition into dri_glx.c and
let's dri_glx.c allocate the __DRIdisplay struct pointer to from
__GLXdisplayPrivate.
A small step towards moving more of the dri functionality into dri_glx.c.
Diffstat (limited to 'src/glx/x11/glxcmds.c')
-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 1bcfb94030c..d194301dd7a 100644 --- a/src/glx/x11/glxcmds.c +++ b/src/glx/x11/glxcmds.c @@ -129,7 +129,7 @@ GetDRIDrawable( Display *dpy, GLXDrawable drawable, int * const scrn_num ) unsigned i; __GLXscreenConfigs *sc; - if (priv == NULL || priv->driDisplay.private == NULL) + if (priv == NULL || priv->driDisplay == NULL) return NULL; for (i = 0; i < screen_count; i++) { |