Examples of endStartSection()


Examples of net.minecraft.profiler.Profiler.endStartSection()

      }

      if(anyRequest)
        renderManaInvBar(event.resolution, creative, totalMana, totalMaxMana);

      profiler.endStartSection("bossBar");
      BossBarHandler.render(event.resolution);
      profiler.endSection();
      profiler.endSection();
    }
  }
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    if(isLightingEnabled)
      GL11.glDisable(GL11.GL_LIGHTING);

    profiler.startSection("sparkle");
    FXSparkle.dispatchQueuedRenders(tessellator);
    profiler.endStartSection("wisp");
    FXWisp.dispatchQueuedRenders(tessellator);
    profiler.endSection();

    if(isLightingEnabled)
      GL11.glEnable(GL11.GL_LIGHTING);
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

            spawnableChunks.add(hash);
          }
        }
      }
    }
    profiler.endStartSection("spawnMobs");

    int size = spawnableChunks.size;
    if (size < 1) {
      return 0;
    }
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

      } else {
        animalSpawner.findChunksForSpawning(this, spawnHostileMobs && (ticksPerMonsterSpawns != 0 && tickCount % ticksPerMonsterSpawns == 0L), spawnPeacefulMobs && (ticksPerAnimalSpawns != 0 && tickCount % ticksPerAnimalSpawns == 0L), worldInfo.getWorldTotalTime() % 400L == 0L);
      }
    }

    profiler.endStartSection("chunkSource");
    theChunkProviderServer.unloadQueuedChunks();
    theChunkProviderServer.tick();
    this.skylightSubtracted = this.calculateSkylightSubtracted(1.0F);

    this.sendAndApplyBlockEvents();
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    this.skylightSubtracted = this.calculateSkylightSubtracted(1.0F);

    this.sendAndApplyBlockEvents();
    worldInfo.incrementTotalWorldTime(worldInfo.getWorldTotalTime() + 1L);
    worldInfo.setWorldTime(worldInfo.getWorldTime() + 1L);
    profiler.endStartSection("tickPending");
    this.tickUpdates(false);
    profiler.endStartSection("tickTiles");
    this.tickBlocksAndAmbiance();
    profiler.endStartSection("chunkMap");
    this.thePlayerManager.updatePlayerInstances();
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    this.sendAndApplyBlockEvents();
    worldInfo.incrementTotalWorldTime(worldInfo.getWorldTotalTime() + 1L);
    worldInfo.setWorldTime(worldInfo.getWorldTime() + 1L);
    profiler.endStartSection("tickPending");
    this.tickUpdates(false);
    profiler.endStartSection("tickTiles");
    this.tickBlocksAndAmbiance();
    profiler.endStartSection("chunkMap");
    this.thePlayerManager.updatePlayerInstances();
    profiler.endStartSection("village");
    this.villageCollectionObj.tick();
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    worldInfo.setWorldTime(worldInfo.getWorldTime() + 1L);
    profiler.endStartSection("tickPending");
    this.tickUpdates(false);
    profiler.endStartSection("tickTiles");
    this.tickBlocksAndAmbiance();
    profiler.endStartSection("chunkMap");
    this.thePlayerManager.updatePlayerInstances();
    profiler.endStartSection("village");
    this.villageCollectionObj.tick();
    this.villageSiegeObj.tick();
    profiler.endStartSection("portalForcer");
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    this.tickUpdates(false);
    profiler.endStartSection("tickTiles");
    this.tickBlocksAndAmbiance();
    profiler.endStartSection("chunkMap");
    this.thePlayerManager.updatePlayerInstances();
    profiler.endStartSection("village");
    this.villageCollectionObj.tick();
    this.villageSiegeObj.tick();
    profiler.endStartSection("portalForcer");
    this.worldTeleporter.removeStalePortalLocations(this.getTotalWorldTime());
    for (Teleporter tele : customTeleporters) {
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    profiler.endStartSection("chunkMap");
    this.thePlayerManager.updatePlayerInstances();
    profiler.endStartSection("village");
    this.villageCollectionObj.tick();
    this.villageSiegeObj.tick();
    profiler.endStartSection("portalForcer");
    this.worldTeleporter.removeStalePortalLocations(this.getTotalWorldTime());
    for (Teleporter tele : customTeleporters) {
      tele.removeStalePortalLocations(getTotalWorldTime());
    }
    profiler.endSection();
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

        Log.checkWorlds();
      }
      doWorldTick();
    }

    profiler.endStartSection("players");
    this.serverConfigManager.sendPlayerInfoToAllPlayers();

    profiler.endStartSection("tickables");
    for (IUpdatePlayerListBox tickable : (Iterable<IUpdatePlayerListBox>) this.tickables) {
      tickable.update();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.