summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/target-helpers/soft_screen.h
diff options
context:
space:
mode:
authorGeorge Sapountzis <gsapountzis@gmail.com>2010-03-19 02:38:11 +0200
committerGeorge Sapountzis <gsapountzis@gmail.com>2010-03-21 13:21:46 +0200
commitf87a5f6499f51f651c2a9f2d4682875b22926905 (patch)
tree700f75997c24ecfca2728c6a0e65bfaf7e960f4f /src/gallium/auxiliary/target-helpers/soft_screen.h
parentc28f5f98d6d57d3dd74fc6c1205a36ed584d1c93 (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.h12
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 0000000000..5c1012644a
--- /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