• Home
  • Raw
  • Download

Lines Matching refs:fmtString

141 _mesa_warning( struct gl_context *ctx, const char *fmtString, ... )  in _mesa_warning()  argument
145 va_start( args, fmtString ); in _mesa_warning()
146 (void) vsnprintf( str, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args ); in _mesa_warning()
164 _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... ) in _mesa_problem() argument
175 va_start( args, fmtString ); in _mesa_problem()
176 vsnprintf( str, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args ); in _mesa_problem()
186 should_output(struct gl_context *ctx, GLenum error, const char *fmtString) in should_output() argument
210 ctx->ErrorDebugFmtString != fmtString) { in should_output()
212 ctx->ErrorDebugFmtString = fmtString; in should_output()
228 const char *fmtString, in _mesa_gl_vdebugf() argument
236 len = vsnprintf(s, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args); in _mesa_gl_vdebugf()
251 const char *fmtString, ...) in _mesa_gl_debugf() argument
254 va_start(args, fmtString); in _mesa_gl_debugf()
255 _mesa_gl_vdebugf(ctx, id, source, type, severity, fmtString, args); in _mesa_gl_debugf()
300 _mesa_error( struct gl_context *ctx, GLenum error, const char *fmtString, ... ) in _mesa_error() argument
310 do_output = should_output(ctx, error, fmtString); in _mesa_error()
330 va_start(args, fmtString); in _mesa_error()
331 len = vsnprintf(s, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args); in _mesa_error()
382 _mesa_debug( const struct gl_context *ctx, const char *fmtString, ... ) in _mesa_debug() argument
387 va_start(args, fmtString); in _mesa_debug()
388 vsnprintf(s, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args); in _mesa_debug()
393 (void) fmtString; in _mesa_debug()
398 _mesa_log(const char *fmtString, ...) in _mesa_log() argument
402 va_start(args, fmtString); in _mesa_log()
403 vsnprintf(s, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args); in _mesa_log()