From 7e0390e32bb7768dfa26f147c6ae11b4e1364616 Mon Sep 17 00:00:00 2001 From: Stuart Carnie Date: Tue, 19 Apr 2016 01:07:27 -0700 Subject: [PATCH] match bgfx::Stats struct --- include/bgfx/c99/bgfx.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/bgfx/c99/bgfx.h b/include/bgfx/c99/bgfx.h index 927933353..35132b839 100644 --- a/include/bgfx/c99/bgfx.h +++ b/include/bgfx/c99/bgfx.h @@ -298,10 +298,12 @@ typedef struct bgfx_hmd /**/ typedef struct bgfx_stats { - uint64_t cpuTime; + uint64_t cpuTimeBegin; + uint64_t cpuTimeEnd; uint64_t cpuTimerFreq; - uint64_t gpuTime; + uint64_t gpuTimeBegin; + uint64_t gpuTimeEnd; uint64_t gpuTimerFreq; } bgfx_stats_t;