main shrub/neuswc / libswc / backend.h
 1#ifndef SWC_BACKEND_H
 2#define SWC_BACKEND_H
 3
 4#include <stdint.h>
 5
 6struct wld_context;
 7struct wld_renderer;
 8
 9/* rendering state shared by the drm and fb backends */
10struct swc_backend {
11	struct wld_context *context;
12	struct wld_renderer *renderer;
13	uint32_t cursor_width;
14	uint32_t cursor_height;
15};
16
17#endif