summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/egl-static
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2013-06-12 16:21:00 +0800
committerChia-I Wu <olvaffe@gmail.com>2013-06-12 17:46:52 +0800
commitcdfb2163c4cf6b54b6d8ba61f5460a29f58e3184 (patch)
treeab3a4dc322d583db7d279d2376bb36f9dd166c4f /src/gallium/targets/egl-static
parent6fe0453c339b6e894e0ee8d2200e7638a43ed21e (diff)
downloadexternal_mesa3d-cdfb2163c4cf6b54b6d8ba61f5460a29f58e3184.zip
external_mesa3d-cdfb2163c4cf6b54b6d8ba61f5460a29f58e3184.tar.gz
external_mesa3d-cdfb2163c4cf6b54b6d8ba61f5460a29f58e3184.tar.bz2
ilo: get rid of function tables in winsys
We are moving toward making struct intel_bo alias drm_intel_bo. As a first step, we cannot have function tables.
Diffstat (limited to 'src/gallium/targets/egl-static')
-rw-r--r--src/gallium/targets/egl-static/egl_pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/egl-static/egl_pipe.c b/src/gallium/targets/egl-static/egl_pipe.c
index e1a1ad2..57a3233 100644
--- a/src/gallium/targets/egl-static/egl_pipe.c
+++ b/src/gallium/targets/egl-static/egl_pipe.c
@@ -33,7 +33,7 @@
#include "i915/i915_public.h"
#include "target-helpers/inline_wrapper_sw_helper.h"
/* for ilo */
-#include "intel/drm/intel_drm_public.h"
+#include "intel/intel_winsys.h"
#include "ilo/ilo_public.h"
/* for nouveau */
#include "nouveau/drm/nouveau_drm_public.h"
@@ -80,7 +80,7 @@ pipe_ilo_create_screen(int fd)
struct intel_winsys *iws;
struct pipe_screen *screen;
- iws = intel_drm_winsys_create(fd);
+ iws = intel_winsys_create_for_fd(fd);
if (!iws)
return NULL;