mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
34e7f69d69
The specified clients in this commit used to rely on wlr_egl and some of its related functions in order to render surfaces. This is no longer the case as of this commit.
19 lines
391 B
C
19 lines
391 B
C
#ifndef _EGL_COMMON_H
|
|
#define _EGL_COMMON_H
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <wayland-client.h>
|
|
|
|
#include <EGL/egl.h>
|
|
#include <EGL/eglext.h>
|
|
|
|
extern EGLDisplay egl_display;
|
|
extern EGLConfig egl_config;
|
|
extern EGLContext egl_context;
|
|
|
|
extern PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC eglCreatePlatformWindowSurfaceEXT;
|
|
|
|
bool egl_init(struct wl_display *display);
|
|
|
|
void egl_finish(void);
|