blob: 7085c5c85a05aff9da0b681a5f1aa3ae60f27fba (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | #ifndef SW_PUBLIC_H
#define SW_PUBLIC_H
/* A convenience library, primarily to isolate the logic required to
 * figure out which if any software rasterizers have been built and
 * select between them.
 */
struct sw_winsys;
struct pipe_screen *
swrast_create_screen(struct sw_winsys *winsys);
#endif
 |