r200: replace INLINE with inline
authorBrian Paul <brianp@vmware.com>
Thu, 26 Feb 2015 16:48:34 +0000 (09:48 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 26 Feb 2015 18:02:13 +0000 (11:02 -0700)
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
src/mesa/drivers/dri/r200/r200_ioctl.h
src/mesa/drivers/dri/r200/r200_swtcl.c
src/mesa/drivers/dri/r200/r200_vertprog.c

index 1f8125a92c76c6887809070fbff96754d9d5ee6d..4c1f1ac698e0e053b0846cdbe93600a8c73cc707 100644 (file)
@@ -102,7 +102,7 @@ do {                                                                \
    memcpy( rmesa->hw.ATOM.lastcmd, rmesa->hw.ATOM.cmd, \
           rmesa->hw.ATOM.cmd_size * 4)
 
-static INLINE int R200_DB_STATECHANGE( 
+static inline int R200_DB_STATECHANGE( 
    r200ContextPtr rmesa,
    struct radeon_state_atom *atom )
 {
index cb07bcf1f8c968ebcc8d038bc05e5615e080fb39..e8a06c89c2b71974f1e6f4d871fce060f57c6edd 100644 (file)
@@ -318,7 +318,7 @@ void r200_swtcl_flush(struct gl_context *ctx, uint32_t current_offset)
 /**************************************************************************/
 
 
-static INLINE GLuint reduced_hw_prim( struct gl_context *ctx, GLuint prim)
+static inline GLuint reduced_hw_prim( struct gl_context *ctx, GLuint prim)
 {
    switch (prim) {
    case GL_POINTS:
index 23974738a839620007a74c470607ce5941df315e..fdfd27e2e4768b2e212da9e8091bf22ccc7389de 100644 (file)
@@ -152,7 +152,7 @@ static GLboolean r200VertexProgUpdateParams(struct gl_context *ctx, struct r200_
    return GL_TRUE;
 }
 
-static INLINE unsigned long t_dst_mask(GLuint mask)
+static inline unsigned long t_dst_mask(GLuint mask)
 {
    /* WRITEMASK_* is equivalent to VSF_FLAG_* */
    return mask & VSF_FLAG_ALL;
@@ -223,7 +223,7 @@ static unsigned long t_src_class(gl_register_file file)
    }
 }
 
-static INLINE unsigned long t_swizzle(GLubyte swizzle)
+static inline unsigned long t_swizzle(GLubyte swizzle)
 {
 /* this is in fact a NOP as the Mesa SWIZZLE_* are all identical to VSF_IN_COMPONENT_* */
    return swizzle;