diff options
author | Michel Dänzer <[email protected]> | 2012-05-12 12:12:21 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2012-05-12 12:12:21 +0200 |
commit | 24bc382010cc1f2021a7ce8c62626b9e90ee30d0 (patch) | |
tree | 8f8b7b664624ee335e9836178fae65f708c5e06f /src/gallium/targets/pipe-loader/pipe_radeonsi.c | |
parent | 31a25dac98ea20ba853128f98987c6358d8e0598 (diff) |
radeonsi: Fixups for recent build infrastructure changes.
In particular for the pipe loader changes.
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_radeonsi.c')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_radeonsi.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_radeonsi.c b/src/gallium/targets/pipe-loader/pipe_radeonsi.c new file mode 100644 index 00000000000..bb57118b7b0 --- /dev/null +++ b/src/gallium/targets/pipe-loader/pipe_radeonsi.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 "radeonsi/radeonsi_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 = radeonsi_screen_create(rw); + if (!screen) + return NULL; + + screen = debug_screen_wrap(screen); + + return screen; +} + +PUBLIC +DRM_DRIVER_DESCRIPTOR("radeonsi", "radeon", create_screen, NULL) |