xref: /aosp_15_r20/external/mesa3d/src/gallium/drivers/softpipe/sp_public.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 #ifndef SP_PUBLIC_H
2 #define SP_PUBLIC_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 struct pipe_screen;
9 struct sw_winsys;
10 
11 struct pipe_screen *
12 softpipe_create_screen(struct sw_winsys *winsys);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif
19