mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
wayland-egl: Remove left-over headers and struct
This commit is contained in:
parent
f04765922c
commit
5bf6cc95c1
2 changed files with 1 additions and 27 deletions
|
|
@ -12,20 +12,8 @@ extern "C" {
|
||||||
#define WL_EGL_EXPORT
|
#define WL_EGL_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
|
|
||||||
struct wl_egl_display {
|
|
||||||
struct wl_display *display;
|
|
||||||
|
|
||||||
struct wl_drm *drm;
|
|
||||||
int fd;
|
|
||||||
char *device_name;
|
|
||||||
bool authenticated;
|
|
||||||
|
|
||||||
void (*glFlush)(void);
|
|
||||||
};
|
|
||||||
|
|
||||||
struct wl_egl_window {
|
struct wl_egl_window {
|
||||||
struct wl_surface *surface;
|
struct wl_surface *surface;
|
||||||
struct wl_visual *visual;
|
struct wl_visual *visual;
|
||||||
|
|
@ -40,8 +28,7 @@ struct wl_egl_window {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct wl_egl_pixmap {
|
struct wl_egl_pixmap {
|
||||||
struct wl_egl_display *display;
|
struct wl_visual *visual;
|
||||||
struct wl_visual *visual;
|
|
||||||
struct wl_buffer *buffer;
|
struct wl_buffer *buffer;
|
||||||
|
|
||||||
int width;
|
int width;
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,8 @@
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <errno.h>
|
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include <dlfcn.h>
|
|
||||||
|
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
#include "wayland-egl.h"
|
#include "wayland-egl.h"
|
||||||
#include "wayland-egl-priv.h"
|
#include "wayland-egl-priv.h"
|
||||||
#include "wayland-drm-client-protocol.h"
|
|
||||||
#include <xf86drm.h>
|
|
||||||
|
|
||||||
WL_EGL_EXPORT void
|
WL_EGL_EXPORT void
|
||||||
wl_egl_window_resize(struct wl_egl_window *egl_window,
|
wl_egl_window_resize(struct wl_egl_window *egl_window,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue