185 lines
6.3 KiB
C
185 lines
6.3 KiB
C
/*
|
|
* Copyright © 2011-2014 Intel Corporation
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef XWAYLAND_SCREEN_H
|
|
#define XWAYLAND_SCREEN_H
|
|
|
|
#include <xwayland-config.h>
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <X11/X.h>
|
|
#include <dix.h>
|
|
|
|
#include "xwayland-types.h"
|
|
#include "xwayland-window.h"
|
|
#include "xwayland-output.h"
|
|
#include "xwayland-glamor.h"
|
|
#include "xwayland-drm-lease.h"
|
|
#include "xwayland-dmabuf.h"
|
|
|
|
#ifdef XWL_HAS_LIBDECOR
|
|
#include <libdecor.h>
|
|
#endif
|
|
|
|
struct xwl_screen {
|
|
double width;
|
|
double height;
|
|
int depth;
|
|
int global_surface_scale;
|
|
int output_name_serial;
|
|
ScreenPtr screen;
|
|
int wm_client_id;
|
|
int expecting_event;
|
|
enum RootClipMode root_clip_mode;
|
|
|
|
Bool active;
|
|
int rootless;
|
|
xwl_glamor_mode_flags glamor;
|
|
int present;
|
|
int force_xrandr_emulation;
|
|
int fullscreen;
|
|
int host_grab;
|
|
int has_grab;
|
|
int decorate;
|
|
int enable_ei_portal;
|
|
int nokeymap;
|
|
int hidpi;
|
|
|
|
ClipNotifyProcPtr ClipNotify;
|
|
CloseScreenProcPtr CloseScreen;
|
|
ConfigNotifyProcPtr ConfigNotify;
|
|
RealizeWindowProcPtr RealizeWindow;
|
|
UnrealizeWindowProcPtr UnrealizeWindow;
|
|
XYToWindowProcPtr XYToWindow;
|
|
SetWindowPixmapProcPtr SetWindowPixmap;
|
|
ChangeWindowAttributesProcPtr ChangeWindowAttributes;
|
|
ResizeWindowProcPtr ResizeWindow;
|
|
MoveWindowProcPtr MoveWindow;
|
|
SourceValidateProcPtr SourceValidate;
|
|
SetShapeProcPtr SetShape;
|
|
|
|
int (*GrabServer) (ClientPtr client);
|
|
int (*UngrabServer) (ClientPtr client);
|
|
|
|
struct xorg_list output_list;
|
|
struct xorg_list seat_list;
|
|
struct xorg_list damage_window_list;
|
|
struct xorg_list window_list;
|
|
Bool ignore_damage;
|
|
|
|
int need_source_validate;
|
|
|
|
int wayland_fd;
|
|
struct wl_display *display;
|
|
struct wl_registry *registry;
|
|
struct wl_registry *input_registry;
|
|
struct wl_compositor *compositor;
|
|
struct zwp_tablet_manager_v2 *tablet_manager;
|
|
struct wl_shm *shm;
|
|
struct xdg_wm_base *xdg_wm_base;
|
|
struct zwp_relative_pointer_manager_v1 *relative_pointer_manager;
|
|
struct zwp_pointer_constraints_v1 *pointer_constraints;
|
|
struct zwp_pointer_gestures_v1 *pointer_gestures;
|
|
struct zwp_xwayland_keyboard_grab_manager_v1 *wp_grab;
|
|
struct zwp_keyboard_shortcuts_inhibit_manager_v1 *shortcuts_inhibit_manager;
|
|
struct zwp_keyboard_shortcuts_inhibitor_v1 *shortcuts_inhibit;
|
|
struct zwp_linux_dmabuf_v1 *dmabuf;
|
|
int dmabuf_protocol_version;
|
|
struct xwl_dmabuf_feedback default_feedback;
|
|
struct zxdg_output_manager_v1 *xdg_output_manager;
|
|
struct wp_viewporter *viewporter;
|
|
struct xwayland_shell_v1 *xwayland_shell;
|
|
struct wp_tearing_control_manager_v1 *tearing_control_manager;
|
|
struct wp_fractional_scale_manager_v1 *fractional_scale_manager;
|
|
struct wp_linux_drm_syncobj_manager_v1 *explicit_sync;
|
|
struct xdg_system_bell_v1 *system_bell;
|
|
struct xorg_list drm_lease_devices;
|
|
struct xorg_list queued_drm_lease_devices;
|
|
struct xorg_list drm_leases;
|
|
struct xwl_output *fixed_output;
|
|
struct xorg_list pending_wl_surface_destroy;
|
|
uint64_t surface_association_serial;
|
|
uint32_t serial;
|
|
|
|
#define XWL_FORMAT_ARGB8888 (1 << 0)
|
|
#define XWL_FORMAT_XRGB8888 (1 << 1)
|
|
#define XWL_FORMAT_RGB565 (1 << 2)
|
|
|
|
int prepare_read;
|
|
int wait_flush;
|
|
|
|
uint32_t num_formats;
|
|
struct xwl_format *formats;
|
|
void *egl_display, *egl_context;
|
|
|
|
struct glamor_context *glamor_ctx;
|
|
|
|
Atom allow_commits_prop;
|
|
|
|
/* The preferred GLVND vendor. If NULL, "mesa" is assumed. */
|
|
const char *glvnd_vendor;
|
|
#ifdef XWL_HAS_LIBDECOR
|
|
int libdecor_fd;
|
|
struct libdecor *libdecor_context;
|
|
#endif
|
|
const char *output_name;
|
|
|
|
uint32_t present_capabilities;
|
|
};
|
|
|
|
/* Apps which use randr/vidmode to change the mode when going fullscreen,
|
|
* usually change the mode of only a single monitor, so this should be plenty.
|
|
*/
|
|
#define XWL_CLIENT_MAX_EMULATED_MODES 16
|
|
|
|
struct xwl_client {
|
|
struct xwl_emulated_mode emulated_modes[XWL_CLIENT_MAX_EMULATED_MODES];
|
|
};
|
|
|
|
struct xwl_client *xwl_client_get(ClientPtr client);
|
|
struct xwl_screen *xwl_screen_get(ScreenPtr screen);
|
|
Bool xwl_screen_has_viewport_support(struct xwl_screen *xwl_screen);
|
|
Bool xwl_screen_has_resolution_change_emulation(struct xwl_screen *xwl_screen);
|
|
void xwl_screen_check_resolution_change_emulation(struct xwl_screen *xwl_screen);
|
|
struct xwl_output *xwl_screen_get_first_output(struct xwl_screen *xwl_screen);
|
|
struct xwl_output *xwl_screen_get_fixed_or_first_output(struct xwl_screen *xwl_screen);
|
|
int xwl_screen_get_width(struct xwl_screen *xwl_screen);
|
|
int xwl_screen_get_height(struct xwl_screen *xwl_screen);
|
|
|
|
Bool xwl_close_screen(ScreenPtr screen);
|
|
Bool xwl_screen_init(ScreenPtr pScreen, int argc, char **argv);
|
|
void xwl_sync_events (struct xwl_screen *xwl_screen);
|
|
void xwl_screen_roundtrip (struct xwl_screen *xwl_screen);
|
|
void xwl_surface_damage(struct xwl_screen *xwl_screen,
|
|
struct wl_surface *surface,
|
|
int32_t x, int32_t y, int32_t width, int32_t height);
|
|
int xwl_screen_get_next_output_serial(struct xwl_screen * xwl_screen);
|
|
void xwl_screen_lost_focus(struct xwl_screen *xwl_screen);
|
|
Bool xwl_screen_update_global_surface_scale(struct xwl_screen *xwl_screen);
|
|
Bool xwl_screen_should_use_fractional_scale(struct xwl_screen *xwl_screen);
|
|
|
|
#endif /* XWAYLAND_SCREEN_H */
|