summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/dri-ilo/target.c
blob: 3ce75e96b2edcb014d44acccb1e05d8aefab68b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "state_tracker/drm_driver.h"
#include "target-helpers/inline_debug_helper.h"
#include "intel/intel_winsys.h"
#include "ilo/ilo_public.h"

static struct pipe_screen *
create_screen(int fd)
{
   struct intel_winsys *iws;
   struct pipe_screen *screen;

   iws = intel_winsys_create_for_fd(fd);
   if (!iws)
      return NULL;

   screen = ilo_screen_create(iws);
   if (!screen) {
      intel_winsys_destroy(iws);
      return NULL;
   }

   screen = debug_screen_wrap(screen);

   return screen;
}


static const struct drm_conf_ret share_fd_ret = {
   .type = DRM_CONF_BOOL,
   .val.val_int = true,
};

static const struct drm_conf_ret *drm_configuration(enum drm_conf conf)
{
   switch (conf) {
   case DRM_CONF_SHARE_FD:
      return &share_fd_ret;
   default:
      break;
   }
   return NULL;
}

DRM_DRIVER_DESCRIPTOR("i965", "i915", create_screen, drm_configuration)