summaryrefslogtreecommitdiff
path: root/src/gallium/targets/egl-nouveau/target.c
blob: 7d0b141e5a27e597ae54f5d4b26560d9fc22b109 (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 "nouveau/drm/nouveau_drm_public.h"

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

   screen = nouveau_drm_screen_create(fd);
   if (!screen)
      return NULL;

   return screen;
}

DRM_DRIVER_DESCRIPTOR("nouveau", "nouveau", create_screen)

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