]> git.mxchange.org Git - simgear.git/blobdiff - simgear/structure/subsystem_mgr.hxx
Boolean uniforms are now updatable by properties
[simgear.git] / simgear / structure / subsystem_mgr.hxx
index f5f918f65a924ca24a74c229da4ced9c73434ea1..a0e76809c8a3522ddff53b49927248442ab21eff 100644 (file)
@@ -353,9 +353,10 @@ public:
     enum GroupType {
         INIT = 0,
         GENERAL,
-        FDM,  ///< flight model, autopilot, instruments that run coupled
+        FDM,        ///< flight model, autopilot, instruments that run coupled
         POST_FDM,   ///< certain subsystems depend on FDM data
         DISPLAY,    ///< view, camera, rendering updates
+        SOUND/*I want to be last!*/,  ///< needs to run AFTER display, to allow concurrent GPU/sound processing
         MAX_GROUPS
     };
 
@@ -392,7 +393,6 @@ public:
     void setReportTimingCb(void* userData,SGSubsystemTimingCb cb) {reportTimingCb = cb;reportTimingUserData = userData;}
 
 private:
-
     SGSubsystemGroup* _groups[MAX_GROUPS];
 
     typedef std::map<std::string, SGSubsystem*> SubsystemDict;