diff options
author | George Sapountzis <[email protected]> | 2010-03-19 02:38:11 +0200 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2010-03-21 13:21:46 +0200 |
commit | f87a5f6499f51f651c2a9f2d4682875b22926905 (patch) | |
tree | 700f75997c24ecfca2728c6a0e65bfaf7e960f4f /src/gallium/auxiliary/target-helpers/soft_screen.h | |
parent | c28f5f98d6d57d3dd74fc6c1205a36ed584d1c93 (diff) |
gallium: add soft screen helper
Diffstat (limited to 'src/gallium/auxiliary/target-helpers/soft_screen.h')
-rw-r--r-- | src/gallium/auxiliary/target-helpers/soft_screen.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/target-helpers/soft_screen.h b/src/gallium/auxiliary/target-helpers/soft_screen.h new file mode 100644 index 00000000000..5c1012644aa --- /dev/null +++ b/src/gallium/auxiliary/target-helpers/soft_screen.h @@ -0,0 +1,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 |