summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/pipe-loader/pipe_r300.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_r300.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_r300.c')
-rw-r--r--src/gallium/targets/pipe-loader/pipe_r300.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_r300.c b/src/gallium/targets/pipe-loader/pipe_r300.c
new file mode 100644
index 0000000..0556859
--- /dev/null
+++ b/src/gallium/targets/pipe-loader/pipe_r300.c
@@ -0,0 +1,27 @@
+
+#include "target-helpers/inline_debug_helper.h"
+#include "state_tracker/drm_driver.h"
+#include "radeon/drm/radeon_drm_public.h"
+#include "r300/r300_public.h"
+
+static struct pipe_screen *
+create_screen(int fd)
+{
+ struct radeon_winsys *sws;
+ struct pipe_screen *screen;
+
+ sws = radeon_drm_winsys_create(fd);
+ if (!sws)
+ return NULL;
+
+ screen = r300_screen_create(sws);
+ if (!screen)
+ return NULL;
+
+ screen = debug_screen_wrap(screen);
+
+ return screen;
+}
+
+PUBLIC
+DRM_DRIVER_DESCRIPTOR("r300", "radeon", create_screen, NULL)