Mesa (master): i965: s/__inline/INLINE/

Brian Paul brianp at kemper.freedesktop.org
Sat Feb 14 00:22:41 UTC 2009


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

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Feb 12 14:54:13 2009 -0700

i965: s/__inline/INLINE/

---

 src/mesa/drivers/dri/i965/brw_wm_glsl.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_wm_glsl.c b/src/mesa/drivers/dri/i965/brw_wm_glsl.c
index dcf2f3d..93e5481 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_glsl.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_glsl.c
@@ -1044,23 +1044,23 @@ static void emit_ddy(struct brw_wm_compile *c,
     brw_set_saturate(p, 0);
 }
 
-static __inline struct brw_reg high_words( struct brw_reg reg )
+static INLINE struct brw_reg high_words( struct brw_reg reg )
 {
     return stride( suboffset( retype( reg, BRW_REGISTER_TYPE_W ), 1 ),
 		   0, 8, 2 );
 }
 
-static __inline struct brw_reg low_words( struct brw_reg reg )
+static INLINE struct brw_reg low_words( struct brw_reg reg )
 {
     return stride( retype( reg, BRW_REGISTER_TYPE_W ), 0, 8, 2 );
 }
 
-static __inline struct brw_reg even_bytes( struct brw_reg reg )
+static INLINE struct brw_reg even_bytes( struct brw_reg reg )
 {
     return stride( retype( reg, BRW_REGISTER_TYPE_B ), 0, 16, 2 );
 }
 
-static __inline struct brw_reg odd_bytes( struct brw_reg reg )
+static INLINE struct brw_reg odd_bytes( struct brw_reg reg )
 {
     return stride( suboffset( retype( reg, BRW_REGISTER_TYPE_B ), 1 ),
 		   0, 16, 2 );




More information about the mesa-commit mailing list