File: SM_Debug.h

package info (click to toggle)
blender 2.36-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 34,220 kB
  • ctags: 42,784
  • sloc: ansic: 280,846; cpp: 123,984; python: 18,428; sh: 7,178; makefile: 3,296; perl: 2,082; xml: 484; java: 8
file content (26 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26


#ifndef __SM_DEBUG_H__
#define __SM_DEBUG_H__

/* Comment this to disable all SUMO debugging printfs */

#define SM_DEBUG

#ifdef SM_DEBUG

#include <stdio.h>

/* Uncomment this to printf all ray casts */
//#define SM_DEBUG_RAYCAST

/* Uncomment this to printf collision callbacks */
//#define SM_DEBUG_BOING

/* Uncomment this to printf Xform matrix calculations */
//#define SM_DEBUG_XFORM

#endif /* SM_DEBUG */

#endif /* __SM_DEBUG_H__ */