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

#include "state_tracker/drm_driver.h"
#include "i915/drm/i915_drm_public.h"
#include "i915/i915_public.h"

static struct pipe_screen *
create_screen(int fd)
{
   struct i915_winsys *iws;
   iws = i915_drm_winsys_create(fd);
   if (!iws)
      return NULL;

   return i915_screen_create(iws);
}

DRM_DRIVER_DESCRIPTOR("i915", "i915", create_screen)

/* A poor man's --whole-archive for EGL drivers */
void *_eglMain(void *);
void *_eglWholeArchive = (void *) _eglMain;