summaryrefslogtreecommitdiff
path: root/src/gallium/targets/pipe-loader/pipe_kmsro.c
blob: 1c1a8d245614b0bf19b7eacbf31b213b0ca64a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include "target-helpers/inline_debug_helper.h"
#include "state_tracker/drm_driver.h"
#include "kmsro/drm/kmsro_drm_public.h"

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

   screen = kmsro_drm_screen_create(fd, config);
   if (!screen)
      return NULL;

   screen = debug_screen_wrap(screen);

   return screen;
}

PUBLIC
DRM_DRIVER_DESCRIPTOR("kmsro", NULL, create_screen)