mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
Don't use renderdoc platform defines in renderdoc_app.h
* This file will be included in user code, so we can't rely on our own platform defines being present.
This commit is contained in:
@@ -28,9 +28,9 @@
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
#if defined(RENDERDOC_PLATFORM_WIN32)
|
||||
#if defined(WIN32)
|
||||
#define RENDERDOC_CC __cdecl
|
||||
#elif defined(RENDERDOC_PLATFORM_LINUX)
|
||||
#elif defined(__linux__)
|
||||
#define RENDERDOC_CC
|
||||
#else
|
||||
#error "Unknown platform"
|
||||
|
||||
Reference in New Issue
Block a user