All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
EmscriptenFrameRateOptions.h
1 #pragma once
2 
3 #include "Types.h"
4 #include "EmscriptenTypes.h"
5 
6 namespace Eegeo
7 {
8  namespace Emscripten
9  {
11  {
13 
14  int TargetVSyncInterval;
15  int ThrottledTargetFrameIntervalMS;
16  float IdleSecondsBeforeThrottle;
17  bool ThrottleWhenIdleEnabled;
18  bool LoggingEnabled;
19  };
20 
21  EmscriptenFrameRateOptions MakeDefaultEmscriptenFrameRateOptions();
22  }
23 }