summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/pipe-loader/pipe_swrast.c
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2011-11-25 14:26:00 +0100
committerFrancisco Jerez <currojerez@riseup.net>2012-05-11 12:39:43 +0200
commit317be33d73228fe8b340de8e029ff24b6e0d95b5 (patch)
treee04d2f6823c13cf51ea7cbd7ae55f2f396391ce2 /src/gallium/targets/pipe-loader/pipe_swrast.c
parente1364530622a26f11c79694429cf84418a0b7ef7 (diff)
downloadexternal_mesa3d-317be33d73228fe8b340de8e029ff24b6e0d95b5.zip
external_mesa3d-317be33d73228fe8b340de8e029ff24b6e0d95b5.tar.gz
external_mesa3d-317be33d73228fe8b340de8e029ff24b6e0d95b5.tar.bz2
gallium: Add "pipe-loader" target.
This target generates pipe driver modules intended to be consumed by auxiliary/pipe-loader. Most of it was taken from the "gbm" target -- the duplicated code will be replaced with references to this target in a future commit. Reviewed-by: Jakob Bornecrantz <jakob@vmware.com>
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_swrast.c')
-rw-r--r--src/gallium/targets/pipe-loader/pipe_swrast.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_swrast.c b/src/gallium/targets/pipe-loader/pipe_swrast.c
new file mode 100644
index 0000000..092abf0
--- /dev/null
+++ b/src/gallium/targets/pipe-loader/pipe_swrast.c
@@ -0,0 +1,22 @@
+
+#include "target-helpers/inline_sw_helper.h"
+#include "target-helpers/inline_debug_helper.h"
+#include "state_tracker/drm_driver.h"
+
+PUBLIC struct pipe_screen *
+swrast_create_screen(struct sw_winsys *ws);
+
+PUBLIC
+DRM_DRIVER_DESCRIPTOR("swrast", NULL, NULL, NULL)
+
+struct pipe_screen *
+swrast_create_screen(struct sw_winsys *ws)
+{
+ struct pipe_screen *screen;
+
+ screen = sw_screen_create(ws);
+ if (screen)
+ screen = debug_screen_wrap(screen);
+
+ return screen;
+}