summaryrefslogtreecommitdiff
path: root/src/gallium/targets/pipe-loader/pipe_r300.c
blob: 268a5eee28729b4d1052d794a2c4be96acd721e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "target-helpers/inline_debug_helper.h"
#include "frontend/drm_driver.h"
#include "radeon/drm/radeon_drm_public.h"
#include "radeon/radeon_winsys.h"
#include "r300/r300_public.h"

static struct pipe_screen *
create_screen(int fd, const struct pipe_screen_config *config)
{
   struct radeon_winsys *sws;

   sws = radeon_drm_winsys_create(fd, config, r300_screen_create);
   return sws ? debug_screen_wrap(sws->screen) : NULL;
}

PUBLIC
DRM_DRIVER_DESCRIPTOR("r300", NULL, create_screen)