Mesa (master): i915g: Fix copy pasto

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Tue Jun 29 11:33:02 UTC 2010


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

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

i915g: Fix copy pasto

---

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

diff --git a/src/gallium/targets/egl/pipe_i915.c b/src/gallium/targets/egl/pipe_i915.c
index 1df650c..758a921 100644
--- a/src/gallium/targets/egl/pipe_i915.c
+++ b/src/gallium/targets/egl/pipe_i915.c
@@ -8,14 +8,14 @@
 static struct pipe_screen *
 create_screen(int fd)
 {
-   struct brw_winsys_screen *bws;
+   struct i915_winsys *iws;
    struct pipe_screen *screen;
 
-   bws = i915_drm_winsys_screen_create(fd);
-   if (!bws)
+   iws = i915_drm_winsys_create(fd);
+   if (!iws)
       return NULL;
 
-   screen = i915_screen_create(bws);
+   screen = i915_screen_create(iws);
    if (!screen)
       return NULL;
 




More information about the mesa-commit mailing list