blob: 5c1012644aa5134cdd4ccdf64c1c0672b3bc9da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SOFT_SCREEN_HELPER_H
#define SOFT_SCREEN_HELPER_H
#include "pipe/p_compiler.h"
struct pipe_screen;
struct sw_winsys;
struct pipe_screen *
gallium_soft_create_screen( struct sw_winsys *winsys );
#endif
|