diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-05-25 15:53:42 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-05-25 15:53:42 -0600 |
commit | d46fa8bbefdd46953e86514e43ef51cd234ecc74 (patch) | |
tree | 262d4ecd71fead38cf3f132ca9779cc6b2dac214 /src | |
parent | 00d5334899010b0e7c0ba53fdc9b112d20f6c34b (diff) |
INLINE goes before the function's return type
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/softpipe/generic/g_tile_fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/softpipe/generic/g_tile_fs.c b/src/mesa/softpipe/generic/g_tile_fs.c index 8473a9b5f1..4c5e6efaed 100644 --- a/src/mesa/softpipe/generic/g_tile_fs.c +++ b/src/mesa/softpipe/generic/g_tile_fs.c @@ -47,7 +47,7 @@ struct exec_machine { /** * Compute quad's attributes values, as constants (GL_FLAT shading). */ -static void INLINE cinterp( struct exec_machine *exec, +static INLINE void cinterp( struct exec_machine *exec, GLuint attrib, GLuint i ) { |