diff options
author | Francisco Jerez <[email protected]> | 2011-11-25 14:26:00 +0100 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2012-05-11 12:39:43 +0200 |
commit | 317be33d73228fe8b340de8e029ff24b6e0d95b5 (patch) | |
tree | e04d2f6823c13cf51ea7cbd7ae55f2f396391ce2 /src/gallium/targets/pipe-loader/pipe_r600.c | |
parent | e1364530622a26f11c79694429cf84418a0b7ef7 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_r600.c')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_r600.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_r600.c b/src/gallium/targets/pipe-loader/pipe_r600.c new file mode 100644 index 00000000000..5d89aca6ec3 --- /dev/null +++ b/src/gallium/targets/pipe-loader/pipe_r600.c @@ -0,0 +1,26 @@ +#include "state_tracker/drm_driver.h" +#include "target-helpers/inline_debug_helper.h" +#include "radeon/drm/radeon_drm_public.h" +#include "r600/r600_public.h" + +static struct pipe_screen * +create_screen(int fd) +{ + struct radeon_winsys *rw; + struct pipe_screen *screen; + + rw = radeon_drm_winsys_create(fd); + if (!rw) + return NULL; + + screen = r600_screen_create(rw); + if (!screen) + return NULL; + + screen = debug_screen_wrap(screen); + + return screen; +} + +PUBLIC +DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen, NULL) |