Putting members of the ENgineStats class NOT public so they can keep their name proudly

This commit is contained in:
samcake 2016-03-28 11:52:31 -07:00
parent b5028acde1
commit aa085f6955

View file

@ -73,18 +73,16 @@ namespace render {
}; };
class EngineStats { class EngineStats {
gpu::ContextStats _gpuStats;
QElapsedTimer _frameTimer;
public: public:
using Config = EngineStatsConfig; using Config = EngineStatsConfig;
using JobModel = Job::Model<EngineStats, Config>; using JobModel = Job::Model<EngineStats, Config>;
EngineStats() { _frameTimer.start(); } EngineStats() { _frameTimer.start(); }
gpu::ContextStats _gpuStats;
void configure(const Config& configuration) {} void configure(const Config& configuration) {}
void run(const SceneContextPointer& sceneContext, const RenderContextPointer& renderContext); void run(const SceneContextPointer& sceneContext, const RenderContextPointer& renderContext);
QElapsedTimer _frameTimer;
}; };
} }