project for a (works on my devices) demo

This commit is contained in:
beno
2026-03-13 02:28:59 +01:00
parent a00ae79ab5
commit dc39a56e91
36 changed files with 3892 additions and 61 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include "../os/WAYLAND/wl_context.h"
#include "../os/EGL/egl_context.h"
#include "gui_component/gui_component.h"
typedef struct {
wl_context *w_context;
egl_context *e_context;
gui_component *win;
uint8_t running;
} application_context;
application_context* application_context_malloc();
application_context* application_context_new( const char *title);