project for a (works on my devices) demo

This commit is contained in:
beno
2026-03-13 02:10:13 +01:00
parent 28f62d0b00
commit 425db27acc
26 changed files with 3553 additions and 60 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <wayland-client-core.h>
#include <EGL/egl.h>
typedef struct {
EGLDisplay *display;
EGLConfig *config;
EGLContext *context;
} egl_context;
void printEGLError();
egl_context* egl_context_malloc();
egl_context* egl_context_new( struct wl_display *display);