blob: c83db28dd98cdbf14063bf4d7e985711c0125159 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef vl_winsys_h
#define vl_winsys_h
#include <X11/Xlib.h>
struct pipe_context;
struct pipe_context* create_pipe_context(Display *display, int screen);
int destroy_pipe_context(struct pipe_context *pipe);
int bind_pipe_drawable(struct pipe_context *pipe, Drawable drawable);
int unbind_pipe_drawable(struct pipe_context *pipe);
#endif
|