main: replace __FUNCTION__ with __func__
authorMarius Predut <marius.predut@intel.com>
Tue, 7 Apr 2015 19:04:58 +0000 (22:04 +0300)
committerMatt Turner <mattst88@gmail.com>
Tue, 14 Apr 2015 19:23:41 +0000 (12:23 -0700)
Consistently just use C99's __func__ everywhere.
The patch was verified with Microsoft Visual studio 2013
redistributable package(RTM version number: 18.0.21005.1)
Next MSVC versions intends to support __func__.
No functional changes.

Acked-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Marius Predut <marius.predut@intel.com>
src/mesa/main/atifragshader.c
src/mesa/main/ffvertex_prog.c
src/mesa/main/format_unpack.py
src/mesa/main/glformats.c
src/mesa/main/mtypes.h
src/mesa/main/state.c

index 9d967b9e67ed842bedcfce234eeccb82701fcb09..9fc35520a38f9d6d78dafd1c3fd15a3d26e98431 100644 (file)
@@ -476,7 +476,7 @@ _mesa_PassTexCoordATI(GLuint dst, GLuint coord, GLenum swizzle)
    curI->swizzle = swizzle;
 
 #if MESA_DEBUG_ATI_FS
-   _mesa_debug(ctx, "%s(%s, %s, %s)\n", __FUNCTION__,
+   _mesa_debug(ctx, "%s(%s, %s, %s)\n", __func__,
               _mesa_lookup_enum_by_nr(dst), _mesa_lookup_enum_by_nr(coord),
               _mesa_lookup_enum_by_nr(swizzle));
 #endif
@@ -549,7 +549,7 @@ _mesa_SampleMapATI(GLuint dst, GLuint interp, GLenum swizzle)
    curI->swizzle = swizzle;
 
 #if MESA_DEBUG_ATI_FS
-   _mesa_debug(ctx, "%s(%s, %s, %s)\n", __FUNCTION__,
+   _mesa_debug(ctx, "%s(%s, %s, %s)\n", __func__,
               _mesa_lookup_enum_by_nr(dst), _mesa_lookup_enum_by_nr(interp),
               _mesa_lookup_enum_by_nr(swizzle));
 #endif
index 395b00e15281bbe72217e0c88aa6ede2620cfe49..edf7e3390874150d3322f32e91e78ca58ae51cab 100644 (file)
@@ -619,13 +619,13 @@ static void emit_op3fn(struct tnl_program *p,
 
 
 #define emit_op3(p, op, dst, mask, src0, src1, src2) \
-   emit_op3fn(p, op, dst, mask, src0, src1, src2, __FUNCTION__, __LINE__)
+   emit_op3fn(p, op, dst, mask, src0, src1, src2, __func__, __LINE__)
 
 #define emit_op2(p, op, dst, mask, src0, src1) \
-    emit_op3fn(p, op, dst, mask, src0, src1, undef, __FUNCTION__, __LINE__)
+    emit_op3fn(p, op, dst, mask, src0, src1, undef, __func__, __LINE__)
 
 #define emit_op1(p, op, dst, mask, src0) \
-    emit_op3fn(p, op, dst, mask, src0, undef, undef, __FUNCTION__, __LINE__)
+    emit_op3fn(p, op, dst, mask, src0, undef, undef, __func__, __LINE__)
 
 
 static struct ureg make_temp( struct tnl_program *p, struct ureg reg )
index 5928c2018eb1a87a669a321c1a3c567341ca8fc0..0ae73b8970a52171298ee82828f6f056b0d5057f 100644 (file)
@@ -332,7 +332,7 @@ _mesa_unpack_rgba_row(mesa_format format, GLuint n,
       unpack_float_ycbcr_rev(src, dst, n);
       break;
    default:
-      _mesa_problem(NULL, "%s: bad format %s", __FUNCTION__,
+      _mesa_problem(NULL, "%s: bad format %s", __func__,
                     _mesa_get_format_name(format));
       return;
    }
@@ -401,7 +401,7 @@ _mesa_unpack_uint_rgba_row(mesa_format format, GLuint n,
       break;
 %endfor
    default:
-      _mesa_problem(NULL, "%s: bad format %s", __FUNCTION__,
+      _mesa_problem(NULL, "%s: bad format %s", __func__,
                     _mesa_get_format_name(format));
       return;
    }
index 4e05229cf022e374f43ccc9f023a5e508183e76a..8ced5794938835a0d6778a52d3dbda88a6fb1b9e 100644 (file)
@@ -1393,7 +1393,7 @@ _mesa_base_format_has_channel(GLenum base_format, GLenum pname)
       return GL_FALSE;
    default:
       _mesa_warning(NULL, "%s: Unexpected channel token 0x%x\n",
-                   __FUNCTION__, pname);
+                   __func__, pname);
       return GL_FALSE;
    }
 
index 5d726b422f5596cca7f39004b86b0ddf368434a5..56d3b7e1e896572aac20222bd55f27651cf24a28 100644 (file)
@@ -4365,7 +4365,7 @@ struct gl_context
 #ifdef DEBUG
 extern int MESA_VERBOSE;
 extern int MESA_DEBUG_FLAGS;
-# define MESA_FUNCTION __FUNCTION__
+# define MESA_FUNCTION __func__
 #else
 # define MESA_VERBOSE 0
 # define MESA_DEBUG_FLAGS 0
index 6dc14b202fec84067a0eea4fc9bc8bf1e9b08d87..cc84c61486c4f59f655e302a536e6a9b15eeffe1 100644 (file)
@@ -482,7 +482,7 @@ _mesa_set_varying_vp_inputs( struct gl_context *ctx,
           ctx->FragmentProgram._TexEnvProgram) {
          ctx->NewState |= _NEW_VARYING_VP_INPUTS;
       }
-      /*printf("%s %x\n", __FUNCTION__, varying_inputs);*/
+      /*printf("%s %x\n", __func__, varying_inputs);*/
    }
 }