| 123456789101112 |
- #ifndef ARK_WAYLAND_SERVER_H
- #define ARK_WAYLAND_SERVER_H
- #include <stdint.h>
- #include <stdbool.h>
- void ark_compositor_set_render_buffer(uint8_t* buffer, int width, int height, int bpp);
- bool ark_compositor_init(void);
- void ark_compositor_dispatch(void);
- void ark_compositor_shutdown(void);
- #endif // ARK_WAYLAND_SERVER_H
|