Mesa (gallium-resources): gallium: s/u_box_orgin_2d/u_box_origin_2d

Roland Scheidegger sroland at kemper.freedesktop.org
Thu Apr 1 16:47:07 UTC 2010


Module: Mesa
Branch: gallium-resources
Commit: 03d4d5a41f5cf158a358fd705c695e1c987a328f
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=03d4d5a41f5cf158a358fd705c695e1c987a328f

Author: Roland Scheidegger <sroland at vmware.com>
Date:   Thu Apr  1 18:34:46 2010 +0200

gallium: s/u_box_orgin_2d/u_box_origin_2d

---

 src/gallium/auxiliary/draw/draw_pipe_aaline.c |    2 +-
 src/gallium/auxiliary/util/u_box.h            |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/gallium/auxiliary/draw/draw_pipe_aaline.c b/src/gallium/auxiliary/draw/draw_pipe_aaline.c
index ff29fe7..3844c04 100644
--- a/src/gallium/auxiliary/draw/draw_pipe_aaline.c
+++ b/src/gallium/auxiliary/draw/draw_pipe_aaline.c
@@ -435,7 +435,7 @@ aaline_create_texture(struct aaline_stage *aaline)
 
       assert(aaline->texture->width0 == aaline->texture->height0);
 
-      u_box_orgin_2d( size, size, &box );
+      u_box_origin_2d( size, size, &box );
 
       /* This texture is new, no need to flush. 
        */
diff --git a/src/gallium/auxiliary/util/u_box.h b/src/gallium/auxiliary/util/u_box.h
index fe694a9..919967b 100644
--- a/src/gallium/auxiliary/util/u_box.h
+++ b/src/gallium/auxiliary/util/u_box.h
@@ -32,9 +32,9 @@ void u_box_2d( unsigned x,
 }
 
 static INLINE
-void u_box_orgin_2d( unsigned w,
-		     unsigned h,
-		     struct pipe_box *box )
+void u_box_origin_2d( unsigned w,
+		      unsigned h,
+		      struct pipe_box *box )
 {
    box->x = 0;
    box->y = 0;




More information about the mesa-commit mailing list