summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen White <senorblanco@chromium.org>2011-10-03 15:18:22 -0700
committerStéphane Marchesin <marcheu@chromium.org>2011-10-04 11:19:45 -0700
commitcd9627777c3f1a55560e10912b88b1977c8bfe87 (patch)
tree30b98dea5c8892922283784d921e1ea97d613d6f
parent5506f6ef966b8883e575a3f60ce96ad42ee6ffd2 (diff)
st/glx: Set the drawable attribute on xmesa_buffer creation.
Otherwise we'll be unable to use our pbuffers.
-rw-r--r--src/gallium/state_trackers/glx/xlib/xm_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/glx/xlib/xm_api.c b/src/gallium/state_trackers/glx/xlib/xm_api.c
index 8f6406ddaee..faaa5a75010 100644
--- a/src/gallium/state_trackers/glx/xlib/xm_api.c
+++ b/src/gallium/state_trackers/glx/xlib/xm_api.c
@@ -448,7 +448,7 @@ create_xmesa_buffer(Drawable d, BufferType type,
if (!b)
return NULL;
- b->ws.drawable = d;
+ b->ws.drawable = b->drawable = d;
b->ws.visual = vis->visinfo->visual;
b->ws.depth = vis->visinfo->depth;