1
0

ark_wayland_server.h 325 B

123456789101112
  1. #ifndef ARK_WAYLAND_SERVER_H
  2. #define ARK_WAYLAND_SERVER_H
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. void ark_compositor_set_render_buffer(uint8_t* buffer, int width, int height, int bpp);
  6. bool ark_compositor_init(void);
  7. void ark_compositor_dispatch(void);
  8. void ark_compositor_shutdown(void);
  9. #endif // ARK_WAYLAND_SERVER_H