Merge commit 'origin/gallium-master-merge'
[mesa.git] / src / gallium / winsys / g3dvl / vl_winsys.h
1 #ifndef vl_winsys_h
2 #define vl_winsys_h
3
4 #include <X11/Xlib.h>
5
6 struct pipe_context;
7
8 struct pipe_context* create_pipe_context(Display *display, int screen);
9 int destroy_pipe_context(struct pipe_context *pipe);
10 int bind_pipe_drawable(struct pipe_context *pipe, Drawable drawable);
11 int unbind_pipe_drawable(struct pipe_context *pipe);
12
13 #endif
14