diff options
Diffstat (limited to 'src/gallium/targets/gbm/pipe_r600.c')
-rw-r--r-- | src/gallium/targets/gbm/pipe_r600.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/gallium/targets/gbm/pipe_r600.c b/src/gallium/targets/gbm/pipe_r600.c deleted file mode 100644 index 5d89aca6ec3..00000000000 --- a/src/gallium/targets/gbm/pipe_r600.c +++ /dev/null @@ -1,26 +0,0 @@ -#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) |