Move feedback stutter bug report to android folder

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Paul Lipscomb
2026-07-30 19:14:00 -05:00
parent d5dfb290c1
commit 6f66a5db64
566 changed files with 432 additions and 147 deletions
+42
View File
@@ -0,0 +1,42 @@
/*
WDL - timing.h
this is based on some public domain Pentium RDTSC timing code from usenet in 1996.
To enable this, your app must #define TIMING, include timing.h, and call timingEnter(x)/timingLeave(x) a bunch
of times (where x is 0..63).
*/
#ifndef _TIMING_H_
#define _TIMING_H_
//#define TIMING
#include "wdltypes.h"
#if defined(TIMING)
#ifdef __cplusplus
extern "C" {
#endif
void _timingEnter(int);
void _timingLeave(int);
WDL_INT64 _timingQuery(int, WDL_INT64*);
#ifdef __cplusplus
}
#endif
#define timingLeave(x) _timingLeave(x)
#define timingEnter(x) _timingEnter(x)
#define timingQuery(x,y) _timingQuery(x,y)
#else
#define timingLeave(x)
#define timingEnter(x)
#define timingQuery(x,y) (0)
#endif
#define timingPrint()
#define timingInit()
#endif