From fa9cfe0a7ff390f15bfdc6add7e57841173d1954 Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 7 Dec 2010 12:45:07 +0200 Subject: make PCNT stuff optional --- frontend/pcnt.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'frontend/pcnt.h') diff --git a/frontend/pcnt.h b/frontend/pcnt.h index 57bc88a..d3eedfa 100644 --- a/frontend/pcnt.h +++ b/frontend/pcnt.h @@ -6,6 +6,8 @@ enum pcounters { PCNT_CNT }; +#ifdef PCNT + extern unsigned int pcounters[PCNT_CNT]; extern unsigned int pcounter_starts[PCNT_CNT]; @@ -50,3 +52,15 @@ static inline unsigned int pcnt_get(void) return val; } +#else + +#define pcnt_start(id) +#define pcnt_end(id) +#define pcnt_hook_plugins() + +static inline void pcnt_print(float fps) +{ + printf("%2.1f\n", fps); +} + +#endif -- cgit v1.2.3