Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00026 #ifndef __RS_DEBUG_RSH__
00027 #define __RS_DEBUG_RSH__
00028
00029
00030
00034 extern void __attribute__((overloadable))
00035 rsDebug(const char *, float);
00039 extern void __attribute__((overloadable))
00040 rsDebug(const char *, float, float);
00044 extern void __attribute__((overloadable))
00045 rsDebug(const char *, float, float, float);
00049 extern void __attribute__((overloadable))
00050 rsDebug(const char *, float, float, float, float);
00054 extern void __attribute__((overloadable))
00055 rsDebug(const char *, double);
00059 extern void __attribute__((overloadable))
00060 rsDebug(const char *, const rs_matrix4x4 *);
00064 extern void __attribute__((overloadable))
00065 rsDebug(const char *, const rs_matrix3x3 *);
00069 extern void __attribute__((overloadable))
00070 rsDebug(const char *, const rs_matrix2x2 *);
00074 extern void __attribute__((overloadable))
00075 rsDebug(const char *, int);
00079 extern void __attribute__((overloadable))
00080 rsDebug(const char *, uint);
00084 extern void __attribute__((overloadable))
00085 rsDebug(const char *, long);
00089 extern void __attribute__((overloadable))
00090 rsDebug(const char *, unsigned long);
00094 extern void __attribute__((overloadable))
00095 rsDebug(const char *, long long);
00099 extern void __attribute__((overloadable))
00100 rsDebug(const char *, unsigned long long);
00104 extern void __attribute__((overloadable))
00105 rsDebug(const char *, const void *);
00106 #define RS_DEBUG(a) rsDebug(#a, a)
00107 #define RS_DEBUG_MARKER rsDebug(__FILE__, __LINE__)
00108
00109
00113 _RS_RUNTIME void __attribute__((overloadable)) rsDebug(const char *s, float2 v);
00117 _RS_RUNTIME void __attribute__((overloadable)) rsDebug(const char *s, float3 v);
00121 _RS_RUNTIME void __attribute__((overloadable)) rsDebug(const char *s, float4 v);
00122
00123 #endif