summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/wayland/wayland-drm-protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/wayland/wayland-drm-protocol.c')
-rw-r--r--src/3rdparty/wayland/wayland-drm-protocol.c43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/3rdparty/wayland/wayland-drm-protocol.c b/src/3rdparty/wayland/wayland-drm-protocol.c
deleted file mode 100644
index f69318ec3..000000000
--- a/src/3rdparty/wayland/wayland-drm-protocol.c
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright © 2010 Kristian Høgsberg
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that copyright
- * notice and this permission notice appear in supporting documentation, and
- * that the name of the copyright holders not be used in advertising or
- * publicity pertaining to distribution of the software without specific,
- * written prior permission. The copyright holders make no representations
- * about the suitability of this software for any purpose. It is provided "as
- * is" without express or implied warranty.
- *
- * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
- * OF THIS SOFTWARE.
- */
-
-
-#include <stdlib.h>
-#include <stdint.h>
-#include "wayland-util.h"
-
-static const struct wl_message drm_requests[] = {
- { "authenticate", "u" },
- { "create_buffer", "nuiiuo" },
-};
-
-static const struct wl_message drm_events[] = {
- { "device", "s" },
- { "authenticated", "" },
-};
-
-WL_EXPORT const struct wl_interface wl_drm_interface = {
- "drm", 1,
- ARRAY_LENGTH(drm_requests), drm_requests,
- ARRAY_LENGTH(drm_events), drm_events,
-};
-