Lines Matching refs:fmtString
911 _mesa_warning( struct gl_context *ctx, const char *fmtString, ... ) in _mesa_warning() argument
915 va_start( args, fmtString ); in _mesa_warning()
916 (void) _mesa_vsnprintf( str, MAXSTRING, fmtString, args ); in _mesa_warning()
934 _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... ) in _mesa_problem() argument
945 va_start( args, fmtString ); in _mesa_problem()
946 _mesa_vsnprintf( str, MAXSTRING, fmtString, args ); in _mesa_problem()
955 should_output(struct gl_context *ctx, GLenum error, const char *fmtString) in should_output() argument
979 ctx->ErrorDebugFmtString != fmtString) { in should_output()
981 ctx->ErrorDebugFmtString = fmtString; in should_output()
1004 _mesa_error( struct gl_context *ctx, GLenum error, const char *fmtString, ... ) in _mesa_error() argument
1008 do_output = should_output(ctx, error, fmtString); in _mesa_error()
1017 va_start(args, fmtString); in _mesa_error()
1018 len = _mesa_vsnprintf(s, MAXSTRING, fmtString, args); in _mesa_error()
1060 _mesa_debug( const struct gl_context *ctx, const char *fmtString, ... ) in _mesa_debug() argument
1065 va_start(args, fmtString); in _mesa_debug()
1066 _mesa_vsnprintf(s, MAXSTRING, fmtString, args); in _mesa_debug()
1071 (void) fmtString; in _mesa_debug()