summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/sw/sw_public.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/sw/sw_public.h')
-rw-r--r--src/gallium/drivers/sw/sw_public.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gallium/drivers/sw/sw_public.h b/src/gallium/drivers/sw/sw_public.h
new file mode 100644
index 0000000000..7085c5c85a
--- /dev/null
+++ b/src/gallium/drivers/sw/sw_public.h
@@ -0,0 +1,13 @@
+#ifndef SW_PUBLIC_H
+#define SW_PUBLIC_H
+
+/* A convenience library, primarily to isolate the logic required to
+ * figure out which if any software rasterizers have been built and
+ * select between them.
+ */
+struct sw_winsys;
+
+struct pipe_screen *
+swrast_create_screen(struct sw_winsys *winsys);
+
+#endif