Go to the source code of this file.
Namespaces | |
namespace | OVR |
Defines | |
#define | OVR_LOG_FUNCTION_IMPL(Name) |
Variables | |
Log *volatile | OVR::OVR_GlobalLog = 0 |
#define OVR_LOG_FUNCTION_IMPL | ( | Name | ) |
void Log##Name(const char* fmt, ...) \ { \ if (OVR_GlobalLog) \ { \ va_list argList; va_start(argList, fmt); \ OVR_GlobalLog->LogMessageVarg(Log_##Name, fmt, argList); \ va_end(argList); \ } \ }
Definition at line 153 of file OVR_Log.cpp.