Mesa (master): i915g: Add missing egl pipe file

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Tue Jun 29 11:22:48 UTC 2010


Module: Mesa
Branch: master
Commit: eebb04875392e162a7372d79b8eb2f72d9086d65
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=eebb04875392e162a7372d79b8eb2f72d9086d65

Author: Jakob Bornecrantz <jakob at vmware.com>
Date:   Tue Jun 29 12:28:15 2010 +0100

i915g: Add missing egl pipe file

---

 src/gallium/targets/egl/pipe_i915.c |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/src/gallium/targets/egl/pipe_i915.c b/src/gallium/targets/egl/pipe_i915.c
new file mode 100644
index 0000000..1df650c
--- /dev/null
+++ b/src/gallium/targets/egl/pipe_i915.c
@@ -0,0 +1,28 @@
+
+#include "target-helpers/inline_wrapper_sw_helper.h"
+#include "target-helpers/inline_debug_helper.h"
+#include "state_tracker/drm_driver.h"
+#include "i915/drm/i915_drm_public.h"
+#include "i915/i915_public.h"
+
+static struct pipe_screen *
+create_screen(int fd)
+{
+   struct brw_winsys_screen *bws;
+   struct pipe_screen *screen;
+
+   bws = i915_drm_winsys_screen_create(fd);
+   if (!bws)
+      return NULL;
+
+   screen = i915_screen_create(bws);
+   if (!screen)
+      return NULL;
+
+   screen = debug_screen_wrap(screen);
+
+   return screen;
+}
+
+PUBLIC
+DRM_DRIVER_DESCRIPTOR("i915", "i915", create_screen)




More information about the mesa-commit mailing list