2012-11-28 14:01:59 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2012 Matthew Waters <ystreet00@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_GL_WINDOW_WAYLAND_EGL_H__
|
|
|
|
#define __GST_GL_WINDOW_WAYLAND_EGL_H__
|
|
|
|
|
|
|
|
#include <wayland-client.h>
|
|
|
|
#include <wayland-egl.h>
|
|
|
|
#include <wayland-cursor.h>
|
|
|
|
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gl.h>
|
2012-11-28 14:01:59 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_GL_TYPE_WINDOW_WAYLAND_EGL (gst_gl_window_wayland_egl_get_type())
|
|
|
|
#define GST_GL_WINDOW_WAYLAND_EGL(o) (G_TYPE_CHECK_INSTANCE_CAST((o), GST_GL_TYPE_WINDOW_WAYLAND_EGL, GstGLWindowWaylandEGL))
|
|
|
|
#define GST_GL_WINDOW_WAYLAND_EGL_CLASS(k) (G_TYPE_CHECK_CLASS((k), GST_GL_TYPE_WINDOW_WAYLAND_EGL, GstGLWindowWaylandEGLClass))
|
2015-10-19 04:15:30 +00:00
|
|
|
#define GST_IS_GL_WINDOW_WAYLAND_EGL(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), GST_GL_TYPE_WINDOW_WAYLAND_EGL))
|
|
|
|
#define GST_IS_GL_WINDOW_WAYLAND_EGL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE((k), GST_GL_TYPE_WINDOW_WAYLAND_EGL))
|
2012-11-28 14:01:59 +00:00
|
|
|
#define GST_GL_WINDOW_WAYLAND_EGL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GST_GL_TYPE_WINDOW_WAYLAND_EGL, GstGLWindowWaylandEGL_Class))
|
|
|
|
|
|
|
|
typedef struct _GstGLWindowWaylandEGL GstGLWindowWaylandEGL;
|
|
|
|
typedef struct _GstGLWindowWaylandEGLClass GstGLWindowWaylandEGLClass;
|
|
|
|
|
|
|
|
struct window;
|
|
|
|
|
|
|
|
struct display {
|
|
|
|
struct wl_display *display;
|
|
|
|
struct wl_registry *registry;
|
|
|
|
struct wl_compositor *compositor;
|
|
|
|
struct wl_shell *shell;
|
|
|
|
struct wl_seat *seat;
|
2012-11-30 06:09:21 +00:00
|
|
|
struct wl_pointer *pointer;
|
|
|
|
struct wl_keyboard *keyboard;
|
2012-11-28 14:01:59 +00:00
|
|
|
struct wl_shm *shm;
|
|
|
|
struct wl_cursor_theme *cursor_theme;
|
|
|
|
struct wl_cursor *default_cursor;
|
|
|
|
struct wl_surface *cursor_surface;
|
|
|
|
struct window *window;
|
2012-11-30 06:09:21 +00:00
|
|
|
guint32 serial;
|
2014-11-27 00:47:38 +00:00
|
|
|
|
|
|
|
gdouble pointer_x;
|
|
|
|
gdouble pointer_y;
|
2012-11-28 14:01:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct window {
|
|
|
|
struct display *display;
|
|
|
|
|
2015-05-22 06:07:49 +00:00
|
|
|
struct wl_event_queue *queue;
|
2012-11-28 14:01:59 +00:00
|
|
|
struct wl_surface *surface;
|
|
|
|
struct wl_shell_surface *shell_surface;
|
2015-05-27 06:39:06 +00:00
|
|
|
struct wl_egl_window *native;
|
|
|
|
struct wl_surface *foreign_surface;
|
|
|
|
struct wl_subsurface *subsurface;
|
2012-11-28 14:01:59 +00:00
|
|
|
struct wl_callback *callback;
|
|
|
|
int fullscreen, configured;
|
|
|
|
int window_width, window_height;
|
2015-05-29 08:06:27 +00:00
|
|
|
int window_x, window_y;
|
2012-11-28 14:01:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstGLWindowWaylandEGL {
|
|
|
|
/*< private >*/
|
|
|
|
GstGLWindow parent;
|
|
|
|
|
|
|
|
struct display display;
|
|
|
|
struct window window;
|
|
|
|
|
|
|
|
GSource *wl_source;
|
|
|
|
|
|
|
|
gpointer _reserved[GST_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstGLWindowWaylandEGLClass {
|
|
|
|
/*< private >*/
|
|
|
|
GstGLWindowClass parent_class;
|
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
gpointer _reserved[GST_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_gl_window_wayland_egl_get_type (void);
|
|
|
|
|
2015-07-24 07:00:27 +00:00
|
|
|
GstGLWindowWaylandEGL * gst_gl_window_wayland_egl_new (GstGLDisplay * display);
|
2012-11-28 14:01:59 +00:00
|
|
|
|
2015-05-27 06:39:06 +00:00
|
|
|
void gst_gl_window_wayland_egl_create_window (GstGLWindowWaylandEGL * window_egl);
|
|
|
|
|
2012-11-28 14:01:59 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_GL_WINDOW_X11_H__ */
|