Merge commit 'origin/7.8'
[mesa.git] / src / gallium / drivers / sw / sw_public.h
1 #ifndef SW_PUBLIC_H
2 #define SW_PUBLIC_H
3
4 /* A convenience library, primarily to isolate the logic required to
5 * figure out which if any software rasterizers have been built and
6 * select between them.
7 */
8 struct sw_winsys;
9
10 struct pipe_screen *
11 swrast_create_screen(struct sw_winsys *winsys);
12
13 #endif