summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-11-28 18:13:44 -0700
committerBrian Paul <brianp@vmware.com>2011-11-30 06:57:37 -0700
commit1ad5a1a2460dcfe2dd36e19e8699aa58c4a46025 (patch)
tree542a84b45db821d1d455efac327fded2e563793d /src/mesa/tnl
parent22ad02b3ff9e9e5f1ab32e683dfaa89832732eed (diff)
tnl: s/INLINE/inline/
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r--src/mesa/tnl/t_context.h2
-rw-r--r--src/mesa/tnl/t_vb_cliptmp.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h
index b3fce81b459..a7e8c7c047d 100644
--- a/src/mesa/tnl/t_context.h
+++ b/src/mesa/tnl/t_context.h
@@ -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;
diff --git a/src/mesa/tnl/t_vb_cliptmp.h b/src/mesa/tnl/t_vb_cliptmp.h
index d593193435c..0b45bc5342e 100644
--- a/src/mesa/tnl/t_vb_cliptmp.h
+++ b/src/mesa/tnl/t_vb_cliptmp.h
@@ -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 )
{