diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2014-05-20 06:29:19 -0700 |
---|---|---|
committer | Thomas Hellstrom <thellstrom@vmware.com> | 2014-05-21 02:35:29 -0700 |
commit | e8d6facf34adf1c601a3afd0a984ce90ad8fe059 (patch) | |
tree | ca6ebe4531deb3921c4b859a001facff27849dae /vmwgfx | |
parent | 268307e85c06be27345a6808bcf2b3c9887bf8bc (diff) |
vmware/vmwgfx: Fix xwayland build on newer XA versions
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Jakob Bornecrantz <jakob@vmware.com>
Diffstat (limited to 'vmwgfx')
-rw-r--r-- | vmwgfx/vmwgfx_xwayland.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vmwgfx/vmwgfx_xwayland.c b/vmwgfx/vmwgfx_xwayland.c index a16a7c4..5e25666 100644 --- a/vmwgfx/vmwgfx_xwayland.c +++ b/vmwgfx/vmwgfx_xwayland.c @@ -62,7 +62,7 @@ vmwgfx_create_window_buffer(struct xwl_window *xwl_window, * surface. */ vpix->hw_is_hosted = TRUE; - if (xa_surface_handle(vpix->hw, &name, &pitch) != XA_ERR_NONE) + if (_xa_surface_handle(vpix->hw, &name, &pitch) != XA_ERR_NONE) return BadDrawable; return xwl_create_window_buffer_drm(xwl_window, pixmap, name); |