Collaboration diagram for Macros providing formatted output relevant for a certain test modes:
|
Defines |
#define | __LOG_TEST(s) { if ( nvutil::LogTest::instance()->isEnabled() ) { nvutil::LogTest::instance()->format s; } } |
| Output test relevant format string s if output is enabled.
|
#define | __LOG_BENCH_TEST(s) { if ( nvutil::LogBenchTest::instance()->isEnabled() ) { nvutil::LogBenchTest::instance()->format s; } } |
| Output benchmark test relevant format string s if output is enabled.
|
#define | __LOG_SHADER_TEST(s) { if ( nvutil::LogShaderTest::instance()->isEnabled() ) { nvutil::LogShaderTest::instance()->format s; } } |
| Output shader test relevant format string s if output is enabled.
|