mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 05:48:07 +02:00
st/egl: Move drm_display_authenticate into HAVE_WAYLAND_BACKEND section.
Fixes this GCC warning. native_drm.c:153:1: warning: ‘drm_display_authenticate’ defined but not used [-Wunused-function] Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
dbadd39508
commit
d394bc5853
1 changed files with 9 additions and 9 deletions
|
|
@ -149,15 +149,6 @@ static struct native_display_buffer drm_display_buffer = {
|
|||
drm_display_export_native_buffer
|
||||
};
|
||||
|
||||
static int
|
||||
drm_display_authenticate(void *user_data, uint32_t magic)
|
||||
{
|
||||
struct native_display *ndpy = user_data;
|
||||
struct drm_display *drmdpy = drm_display(ndpy);
|
||||
|
||||
return drmAuthMagic(drmdpy->fd, magic);
|
||||
}
|
||||
|
||||
static char *
|
||||
drm_get_device_name(int fd)
|
||||
{
|
||||
|
|
@ -196,6 +187,15 @@ out:
|
|||
|
||||
#ifdef HAVE_WAYLAND_BACKEND
|
||||
|
||||
static int
|
||||
drm_display_authenticate(void *user_data, uint32_t magic)
|
||||
{
|
||||
struct native_display *ndpy = user_data;
|
||||
struct drm_display *drmdpy = drm_display(ndpy);
|
||||
|
||||
return drmAuthMagic(drmdpy->fd, magic);
|
||||
}
|
||||
|
||||
static struct wayland_drm_callbacks wl_drm_callbacks = {
|
||||
drm_display_authenticate,
|
||||
egl_g3d_wl_drm_helper_reference_buffer,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue