summaryrefslogtreecommitdiff
path: root/tracelog.h
blob: cee85d4d89488685cf7c1d77a34bbbf834548653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Created by Keuin on 2022/4/16.
//

#ifndef RT_TRACELOG_H
#define RT_TRACELOG_H

// log ray traces to stderr
//#define LOG_TRACE

#ifdef LOG_TRACE
#define TRACELOG(...) (fprintf(stderr, __VA_ARGS__))
#else
#define TRACELOG(...)
#endif

#endif //RT_TRACELOG_H