Merge remote branch 'origin/7.8'
[mesa.git] / src / gallium / targets / egl-swrast / swrast_glue.c
1 #include "state_tracker/drm_api.h"
2
3 static struct drm_api swrast_drm_api =
4 {
5 .name = "swrast",
6 };
7
8 struct drm_api *
9 drm_api_create()
10 {
11 (void) swrast_drm_api;
12 return NULL;
13 }
14
15 /* A poor man's --whole-archive for EGL drivers */
16 void *_eglMain(void *);
17 void *_eglWholeArchive = (void *) _eglMain;