tnl: s/INLINE/inline/
authorBrian Paul <brianp@vmware.com>
Tue, 29 Nov 2011 01:13:44 +0000 (18:13 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 30 Nov 2011 13:57:37 +0000 (06:57 -0700)
src/mesa/tnl/t_context.h
src/mesa/tnl/t_vb_cliptmp.h

index b3fce81b45981484fe58d45adffd400f5fde99e3..a7e8c7c047d131cdbd9faee84d2b5b62f64ed4af 100644 (file)
@@ -173,7 +173,7 @@ enum {
 #define PRIM_END       0x20
 #define PRIM_MODE_MASK 0x0f
 
-static INLINE GLuint _tnl_translate_prim( const struct _mesa_prim *prim )
+static inline GLuint _tnl_translate_prim( const struct _mesa_prim *prim )
 {
    GLuint flag;
    flag = prim->mode;
index d593193435c0140d7b99a06559f54897f139997e..0b45bc5342e428fe987dee64a5b7f3a05ea70e51 100644 (file)
@@ -114,7 +114,7 @@ do {                                                                        \
 
 /* Clip a line against the viewport and user clip planes.
  */
-static INLINE void
+static inline void
 TAG(clip_line)( struct gl_context *ctx, GLuint v0, GLuint v1, GLubyte mask )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
@@ -183,7 +183,7 @@ TAG(clip_line)( struct gl_context *ctx, GLuint v0, GLuint v1, GLubyte mask )
 
 /* Clip a triangle against the viewport and user clip planes.
  */
-static INLINE void
+static inline void
 TAG(clip_tri)( struct gl_context *ctx, GLuint v0, GLuint v1, GLuint v2, GLubyte mask )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
@@ -262,7 +262,7 @@ TAG(clip_tri)( struct gl_context *ctx, GLuint v0, GLuint v1, GLuint v2, GLubyte
 
 /* Clip a quad against the viewport and user clip planes.
  */
-static INLINE void
+static inline void
 TAG(clip_quad)( struct gl_context *ctx, GLuint v0, GLuint v1, GLuint v2, GLuint v3,
                 GLubyte mask )
 {