mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 08:45:59 +01:00
016da234d0
Moves Hyprland from wlroots to aquamarine for the backend. --------- Signed-off-by: Vaxry <vaxry@vaxry.net> Co-authored-by: Mihai Fufezan <mihai@fufexan.net> Co-authored-by: Jan Beich <jbeich@FreeBSD.org> Co-authored-by: vaxerski <vaxerski@users.noreply.github.com> Co-authored-by: UjinT34 <41110182+UjinT34@users.noreply.github.com> Co-authored-by: Tom Englund <tomenglund26@gmail.com> Co-authored-by: Ikalco <73481042+ikalco@users.noreply.github.com> Co-authored-by: diniamo <diniamo53@gmail.com>
36 lines
721 B
C++
36 lines
721 B
C++
#pragma once
|
|
|
|
// because C/C++ VS Code intellisense is stupid with includes, we will suppress them here.
|
|
// This suppresses all "include file not found" errors.
|
|
#ifdef __INTELLISENSE__
|
|
#pragma diag_suppress 1696
|
|
#endif
|
|
|
|
#include <getopt.h>
|
|
#include <libinput.h>
|
|
#include <linux/input-event-codes.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/wait.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
#include <wayland-server-core.h>
|
|
|
|
#ifdef LEGACY_RENDERER
|
|
#include <GLES2/gl2.h>
|
|
#include <GLES2/gl2ext.h>
|
|
#define GLES2
|
|
#else
|
|
#define GLES32
|
|
#include <GLES3/gl32.h>
|
|
#include <GLES3/gl3ext.h>
|
|
#endif
|
|
|
|
#ifdef NO_XWAYLAND
|
|
#define XWAYLAND false
|
|
#else
|
|
#define XWAYLAND true
|
|
#endif
|
|
|
|
#include "SharedDefs.hpp"
|