summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/pipe-loader/pipe_r600.c
blob: 2e6bd42c22d2fc88981862bba01f565689b6a9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "state_tracker/drm_driver.h"
#include "target-helpers/inline_debug_helper.h"
#include "radeon/drm/radeon_drm_public.h"
#include "radeon/drm/radeon_winsys.h"
#include "r600/r600_public.h"

static struct pipe_screen *
create_screen(int fd)
{
   struct radeon_winsys *rw;

   rw = radeon_drm_winsys_create(fd, r600_screen_create);
   return rw ? debug_screen_wrap(rw->screen) : NULL;
}

PUBLIC
DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen, NULL)