blob: cb163dc24d26eb14d8b987b0e21a675a1ef8c2fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef xsp_winsys_h
#define xsp_winsys_h
#include <X11/Xlib.h>
struct pipe_context;
struct pipe_context* create_pipe_context(Display *display);
int destroy_pipe_context(struct pipe_context *pipe);
#endif
|