summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/common
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2014-09-04 09:20:20 -0600
committerBrian Paul <[email protected]>2014-09-04 12:17:43 -0600
commitc4a0be73ea948513cb83202829c35151b8adf8b9 (patch)
tree01732ff9e50de996adea4b1d3930c463775903bd /src/mesa/drivers/common
parent44df6df05b4a0f08699ac1e192110f61584c3e88 (diff)
meta: s/INLINE/inline/
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r--src/mesa/drivers/common/meta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c
index 85f934dd4f2..7a8e627ba94 100644
--- a/src/mesa/drivers/common/meta.c
+++ b/src/mesa/drivers/common/meta.c
@@ -1220,7 +1220,7 @@ _mesa_meta_in_progress(struct gl_context *ctx)
* Used by the meta-Clear, Draw/CopyPixels and Bitmap functions where the Z
* value comes from the clear value or raster position.
*/
-static INLINE GLfloat
+static inline GLfloat
invert_z(GLfloat normZ)
{
GLfloat objZ = 1.0f - 2.0f * normZ;