| Index: third_party/wayland-protocols/protocol/linux-dmabuf-protocol.c
|
| diff --git a/third_party/wayland-protocols/protocol/linux-dmabuf-protocol.c b/third_party/wayland-protocols/protocol/linux-dmabuf-protocol.c
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..358641e19ef2f1741930f4ae59d8be310dce3cad
|
| --- /dev/null
|
| +++ b/third_party/wayland-protocols/protocol/linux-dmabuf-protocol.c
|
| @@ -0,0 +1,75 @@
|
| +/*
|
| + * Copyright © 2014, 2015 Collabora, Ltd.
|
| + *
|
| + * 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"
|
| +
|
| +extern const struct wl_interface zwp_linux_buffer_params_v1_interface;
|
| +extern const struct wl_interface wl_buffer_interface;
|
| +
|
| +static const struct wl_interface *types[] = {
|
| + NULL,
|
| + NULL,
|
| + NULL,
|
| + NULL,
|
| + NULL,
|
| + NULL,
|
| + &zwp_linux_buffer_params_v1_interface,
|
| + &wl_buffer_interface,
|
| +};
|
| +
|
| +static const struct wl_message zwp_linux_dmabuf_v1_requests[] = {
|
| + { "destroy", "", types + 0 },
|
| + { "create_params", "n", types + 6 },
|
| +};
|
| +
|
| +static const struct wl_message zwp_linux_dmabuf_v1_events[] = {
|
| + { "format", "u", types + 0 },
|
| +};
|
| +
|
| +WL_EXPORT const struct wl_interface zwp_linux_dmabuf_v1_interface = {
|
| + "zwp_linux_dmabuf_v1", 1,
|
| + 2, zwp_linux_dmabuf_v1_requests,
|
| + 1, zwp_linux_dmabuf_v1_events,
|
| +};
|
| +
|
| +static const struct wl_message zwp_linux_buffer_params_v1_requests[] = {
|
| + { "destroy", "", types + 0 },
|
| + { "add", "huuuuu", types + 0 },
|
| + { "create", "iiuu", types + 0 },
|
| +};
|
| +
|
| +static const struct wl_message zwp_linux_buffer_params_v1_events[] = {
|
| + { "created", "n", types + 7 },
|
| + { "failed", "", types + 0 },
|
| +};
|
| +
|
| +WL_EXPORT const struct wl_interface zwp_linux_buffer_params_v1_interface = {
|
| + "zwp_linux_buffer_params_v1", 1,
|
| + 3, zwp_linux_buffer_params_v1_requests,
|
| + 2, zwp_linux_buffer_params_v1_events,
|
| +};
|
| +
|
|
|