summaryrefslogtreecommitdiff
path: root/src/gallium/targets/egl-nouveau
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-06-01 04:06:52 +0100
committerJakob Bornecrantz <jakob@vmware.com>2010-06-06 12:29:29 +0100
commitc1a19689b83a9569b30ba43c168fdca328cb9f2e (patch)
tree13b0c2e3f360a6f911fb5154b2db70fea9016e15 /src/gallium/targets/egl-nouveau
parente72b15aa47c24b920c708e1dc47f69a070d50d51 (diff)
gallium: Make all drm drivers use the new drm compat helper
Diffstat (limited to 'src/gallium/targets/egl-nouveau')
-rw-r--r--src/gallium/targets/egl-nouveau/Makefile2
-rw-r--r--src/gallium/targets/egl-nouveau/target.c (renamed from src/gallium/targets/egl-nouveau/dummy.c)5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/targets/egl-nouveau/Makefile b/src/gallium/targets/egl-nouveau/Makefile
index e3fa8937e8..3f0a373e43 100644
--- a/src/gallium/targets/egl-nouveau/Makefile
+++ b/src/gallium/targets/egl-nouveau/Makefile
@@ -2,7 +2,7 @@ TOP = ../../../..
include $(TOP)/configs/current
EGL_DRIVER_NAME = nouveau
-EGL_DRIVER_SOURCES = dummy.c
+EGL_DRIVER_SOURCES = target.c
EGL_DRIVER_LIBS = -ldrm_nouveau
EGL_DRIVER_PIPES = \
diff --git a/src/gallium/targets/egl-nouveau/dummy.c b/src/gallium/targets/egl-nouveau/target.c
index 3181d0ba7e..49545c63e1 100644
--- a/src/gallium/targets/egl-nouveau/dummy.c
+++ b/src/gallium/targets/egl-nouveau/target.c
@@ -1,3 +1,8 @@
+
+#include "target-helpers/drm_api_compat.h"
+
+DRM_API_COMPAT_STRUCT("nouveau", "nouveau")
+
/* A poor man's --whole-archive for EGL drivers */
void *_eglMain(void *);
void *_eglWholeArchive = (void *) _eglMain;