summaryrefslogtreecommitdiff
path: root/src/gallium/targets/egl-swrast/swrast_glue.c
blob: 24f77826d4cb4429383da22e3462f3c9c696cc90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include "state_tracker/drm_driver.h"

struct drm_driver_descriptor drm_driver = {
   .name = "swrast",
   .driver_name = NULL,
   .create_screen = NULL,
};

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