| 9 | #endif |
| 10 | |
| 11 | static void DriverLogVarArgs( const char *pMsgFormat, va_list args ) |
| 12 | { |
| 13 | char buf[ 1024 ]; |
| 14 | vsnprintf_s( buf, sizeof( buf ), pMsgFormat, args ); |
| 15 | |
| 16 | vr::VRDriverLog()->Log( buf ); |
| 17 | } |
| 18 | |
| 19 | |
| 20 | void DriverLog( const char *pMsgFormat, ... ) |
no outgoing calls
no test coverage detected