2014-10-07 22:39:00 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Endless Mobile
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jasper St. Pierre <jstpierre@mecheye.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_WAYLAND_BUFFER_H
|
|
|
|
#define META_WAYLAND_BUFFER_H
|
|
|
|
|
2014-10-07 22:48:49 -04:00
|
|
|
#include <cairo.h>
|
2014-10-07 22:39:00 -04:00
|
|
|
#include <wayland-server.h>
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "cogl/cogl.h"
|
|
|
|
#include "wayland/meta-wayland-types.h"
|
|
|
|
#include "wayland/meta-wayland-egl-stream.h"
|
|
|
|
#include "wayland/meta-wayland-dma-buf.h"
|
2014-10-07 22:39:00 -04:00
|
|
|
|
2016-12-08 22:15:11 -05:00
|
|
|
typedef enum _MetaWaylandBufferType
|
|
|
|
{
|
|
|
|
META_WAYLAND_BUFFER_TYPE_UNKNOWN,
|
|
|
|
META_WAYLAND_BUFFER_TYPE_SHM,
|
|
|
|
META_WAYLAND_BUFFER_TYPE_EGL_IMAGE,
|
2018-11-06 11:09:03 -05:00
|
|
|
#ifdef HAVE_WAYLAND_EGLSTREAM
|
2016-12-08 22:15:11 -05:00
|
|
|
META_WAYLAND_BUFFER_TYPE_EGL_STREAM,
|
2018-11-06 11:09:03 -05:00
|
|
|
#endif
|
2017-07-11 11:03:26 -04:00
|
|
|
META_WAYLAND_BUFFER_TYPE_DMA_BUF,
|
2016-12-08 22:15:11 -05:00
|
|
|
} MetaWaylandBufferType;
|
|
|
|
|
2014-10-07 22:39:00 -04:00
|
|
|
struct _MetaWaylandBuffer
|
|
|
|
{
|
2016-02-26 04:47:21 -05:00
|
|
|
GObject parent;
|
|
|
|
|
2014-10-07 22:39:00 -04:00
|
|
|
struct wl_resource *resource;
|
|
|
|
struct wl_listener destroy_listener;
|
|
|
|
|
|
|
|
CoglTexture *texture;
|
2016-10-20 03:44:27 -04:00
|
|
|
gboolean is_y_inverted;
|
2016-10-20 03:59:09 -04:00
|
|
|
|
2016-12-08 22:15:11 -05:00
|
|
|
MetaWaylandBufferType type;
|
|
|
|
|
2018-11-06 11:09:03 -05:00
|
|
|
#ifdef HAVE_WAYLAND_EGLSTREAM
|
2016-10-20 03:59:09 -04:00
|
|
|
struct {
|
|
|
|
MetaWaylandEglStream *stream;
|
|
|
|
} egl_stream;
|
2018-11-06 11:09:03 -05:00
|
|
|
#endif
|
2017-07-11 11:03:26 -04:00
|
|
|
|
|
|
|
struct {
|
|
|
|
MetaWaylandDmaBufBuffer *dma_buf;
|
|
|
|
} dma_buf;
|
2014-10-07 22:39:00 -04:00
|
|
|
};
|
|
|
|
|
2016-02-26 04:47:21 -05:00
|
|
|
#define META_TYPE_WAYLAND_BUFFER (meta_wayland_buffer_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (MetaWaylandBuffer, meta_wayland_buffer,
|
|
|
|
META, WAYLAND_BUFFER, GObject);
|
|
|
|
|
2014-10-07 22:39:00 -04:00
|
|
|
MetaWaylandBuffer * meta_wayland_buffer_from_resource (struct wl_resource *resource);
|
2018-05-02 06:27:02 -04:00
|
|
|
struct wl_resource * meta_wayland_buffer_get_resource (MetaWaylandBuffer *buffer);
|
2017-05-05 21:41:51 -04:00
|
|
|
gboolean meta_wayland_buffer_is_realized (MetaWaylandBuffer *buffer);
|
|
|
|
gboolean meta_wayland_buffer_realize (MetaWaylandBuffer *buffer);
|
2016-10-20 03:35:29 -04:00
|
|
|
gboolean meta_wayland_buffer_attach (MetaWaylandBuffer *buffer,
|
|
|
|
GError **error);
|
|
|
|
CoglTexture * meta_wayland_buffer_get_texture (MetaWaylandBuffer *buffer);
|
2016-10-20 03:59:09 -04:00
|
|
|
CoglSnippet * meta_wayland_buffer_create_snippet (MetaWaylandBuffer *buffer);
|
2016-10-20 03:44:27 -04:00
|
|
|
gboolean meta_wayland_buffer_is_y_inverted (MetaWaylandBuffer *buffer);
|
2014-10-07 22:48:49 -04:00
|
|
|
void meta_wayland_buffer_process_damage (MetaWaylandBuffer *buffer,
|
|
|
|
cairo_region_t *region);
|
2014-10-07 22:39:00 -04:00
|
|
|
|
|
|
|
#endif /* META_WAYLAND_BUFFER_H */
|