MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / getClockCount

Function getClockCount

3rd_party/Src/ode/ode/src/timer.cpp:46–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44#include "windows.h"
45
46static inline void getClockCount (unsigned long cc[2])
47{
48 LARGE_INTEGER a;
49 QueryPerformanceCounter (&a);
50 cc[0] = a.LowPart;
51 cc[1] = a.HighPart;
52}
53
54
55static inline void serialize()

Callers 6

dTimerResolutionFunction · 0.85
dStopwatchStartFunction · 0.85
dStopwatchStopFunction · 0.85
dTimerStartFunction · 0.85
dTimerNowFunction · 0.85
dTimerEndFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected