blob: 3a0f713d54e03c47c87d41fcd756db488d0bacc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SWRAST_XLIB_HELPER_H
#define SWRAST_XLIB_HELPER_H
#include <X11/Xlib.h>
#include "pipe/p_compiler.h"
/* Helper to build the xlib winsys, choose between the software
* rasterizers and construct the lower part of a driver stack.
*
* Just add a state tracker.
*/
struct pipe_screen *swrast_xlib_create_screen( Display *display );
#endif
|