diff options
author | Jakob Bornecrantz <[email protected]> | 2009-12-04 16:13:57 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-12-04 16:50:08 +0100 |
commit | d5b94b49f602386b75630e73db775a68c72fdf46 (patch) | |
tree | a65fb537e18f5ef9ee981fe17f36f6e4b4df8d06 /src/gallium/state_trackers/xorg/xorg_crtc.c | |
parent | 32ccc9b0bbfad46d2f4ce3b9ac4cdd182d7b64e4 (diff) |
st/xorg: New libkms destroy api
Diffstat (limited to 'src/gallium/state_trackers/xorg/xorg_crtc.c')
-rw-r--r-- | src/gallium/state_trackers/xorg/xorg_crtc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/xorg/xorg_crtc.c b/src/gallium/state_trackers/xorg/xorg_crtc.c index ddcaedde37e..be9fcbc7130 100644 --- a/src/gallium/state_trackers/xorg/xorg_crtc.c +++ b/src/gallium/state_trackers/xorg/xorg_crtc.c @@ -257,7 +257,7 @@ crtc_load_cursor_argb_kms(xf86CrtcPtr crtc, CARD32 * image) return; err_bo_destroy: - kms_bo_destroy(crtcp->cursor_bo); + kms_bo_destroy(&crtcp->cursor_bo); } #endif @@ -305,7 +305,7 @@ xorg_crtc_cursor_destroy(xf86CrtcPtr crtc) pipe_texture_reference(&crtcp->cursor_tex, NULL); #ifdef HAVE_LIBKMS if (crtcp->cursor_bo) - kms_bo_destroy(crtcp->cursor_bo); + kms_bo_destroy(&crtcp->cursor_bo); #endif xfree(crtcp); |