summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/glx
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-02-18 11:17:07 -0700
committerBrian Paul <brianp@vmware.com>2013-02-19 07:19:19 -0700
commite2091f64cb9ea79f3b51c353ed9facc03ec5690a (patch)
treea53f946fa3e05c7736ddc13583d4b1182285af1e /src/gallium/state_trackers/glx
parent5876a5dbc0a6ec9ae7f44b5e483d38ae0d24a259 (diff)
downloadexternal_mesa3d-e2091f64cb9ea79f3b51c353ed9facc03ec5690a.zip
external_mesa3d-e2091f64cb9ea79f3b51c353ed9facc03ec5690a.tar.gz
external_mesa3d-e2091f64cb9ea79f3b51c353ed9facc03ec5690a.tar.bz2
st/xlib: initialize the drawable size in create_xmesa_buffer()
Otherwise, the PBuffer's size was never set. This also initializes the buffer size for windows, pixmaps, etc. Fixes http://bugs.freedesktop.org/show_bug.cgi?id=61012 Note: This is a candidate for the stable branches.
Diffstat (limited to 'src/gallium/state_trackers/glx')
-rw-r--r--src/gallium/state_trackers/glx/xlib/xm_api.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/glx/xlib/xm_api.c b/src/gallium/state_trackers/glx/xlib/xm_api.c
index 607584f..021175c 100644
--- a/src/gallium/state_trackers/glx/xlib/xm_api.c
+++ b/src/gallium/state_trackers/glx/xlib/xm_api.c
@@ -438,7 +438,6 @@ create_xmesa_buffer(Drawable d, BufferType type,
{
XMesaDisplay xmdpy = xmesa_init_display(vis->display);
XMesaBuffer b;
- uint width, height;
ASSERT(type == WINDOW || type == PIXMAP || type == PBUFFER);
@@ -457,7 +456,7 @@ create_xmesa_buffer(Drawable d, BufferType type,
b->type = type;
b->cmap = cmap;
- get_drawable_size(vis->display, d, &width, &height);
+ get_drawable_size(vis->display, d, &b->width, &b->height);
/*
* Create framebuffer, but we'll plug in our own renderbuffers below.