1#ifndef LP_PUBLIC_H 2#define LP_PUBLIC_H 3 4#ifdef __cplusplus 5extern "C" { 6#endif 7 8struct pipe_screen; 9struct sw_winsys; 10 11struct pipe_screen * 12llvmpipe_create_screen(struct sw_winsys *winsys); 13 14#ifdef __cplusplus 15} 16#endif 17 18#endif 19 20