diff options
author | Chia-I Wu <[email protected]> | 2011-12-15 15:06:25 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-12-15 15:07:00 +0800 |
commit | 7aadb53ef020b13658c9a99ecffe554af8755420 (patch) | |
tree | ebaaf88301811c3bb5f78a894abb8f764d7e273e /src/gallium/state_trackers/egl/x11 | |
parent | a06f58fee5dbf0054fb363e759d30cf13c4bbab9 (diff) |
st/egl: fix compiler warnings
One is about casting a pointer to integer and the other is about an unused
function when HAVE_WAYLAND_BACKEND is not defined.
Diffstat (limited to 'src/gallium/state_trackers/egl/x11')
-rw-r--r-- | src/gallium/state_trackers/egl/x11/native_dri2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/egl/x11/native_dri2.c b/src/gallium/state_trackers/egl/x11/native_dri2.c index 9ea3b807be9..5d7d3796e2b 100644 --- a/src/gallium/state_trackers/egl/x11/native_dri2.c +++ b/src/gallium/state_trackers/egl/x11/native_dri2.c @@ -836,6 +836,8 @@ dri2_display_hash_table_compare(void *key1, void *key2) return ((char *) key1 - (char *) key2); } +#ifdef HAVE_WAYLAND_BACKEND + static int dri2_display_authenticate(void *user_data, uint32_t magic) { @@ -845,8 +847,6 @@ dri2_display_authenticate(void *user_data, uint32_t magic) return x11_screen_authenticate(dri2dpy->xscr, magic); } -#ifdef HAVE_WAYLAND_BACKEND - static struct wayland_drm_callbacks wl_drm_callbacks = { dri2_display_authenticate, egl_g3d_wl_drm_helper_reference_buffer, |