summaryrefslogtreecommitdiff
path: root/src/gallium/targets/egl-swrast/swrast_glue.c
blob: defd11c6878daac248cc9d41b23d7b7ab3365b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "state_tracker/drm_api.h"

struct drm_api *
drm_api_create()
{
   return NULL;
}

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