public static void ExecuteRenderEndCommand(this IMGUILayoutRoot self)
 {
     self.GetCommandExecutor().Execute();
 }
 public static void PushRenderEndCommand(this IMGUILayoutRoot self, Action command)
 {
     self.GetCommandExecutor().Push(command);
 }