mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-23 14:15:42 +00:00
Switch RENDERDOC_PLATFORM to RENDERDOC_PLATFORM_<PLAT>.
Notes ====== - With no clean way to do string comparisons in the C preprocessor, have a define per-platform. This avoids the clever string concatenation for determining the OS-specic bits, and allows SN-DBS to distribute builds without custom rewrite rules. - Fix up instances of WIN32, etc., in non-3rdparty sources to refer to this. - Move the per-platform specific bits into their own subdirs.
This commit is contained in:
@@ -69,7 +69,7 @@ enum
|
||||
// whether to include file and line on log lines
|
||||
#define INCLUDE_LOCATION_IN_LOG
|
||||
|
||||
#if !defined(WIN32)
|
||||
#if !defined(RENDERDOC_PLATFORM_WIN32)
|
||||
// logs go to stdout/stderr
|
||||
#define OUTPUT_LOG_TO_STDOUT
|
||||
//#define OUTPUT_LOG_TO_STDERR
|
||||
|
||||
Reference in New Issue
Block a user