Search results

  1. X

    Main loop processing order

    While running the game on my laptop in battery saving mode I noticed that the rendering took more than 50 ms, but the individual rendering tasks took each less than 3ms. The biggest time is in the synchronizing with the videocard. While the videocard is processing all the commands given to it by...
  2. X

    Setup of source files for netbeans

    The setup as described here is MUCH easier than what is described for eclipse/IDEA. No more command line stuff, or even installing git on your pc! Overview of steps: Install netbeans Install the gradle plugin for netbeans Clone the git repository with netbeans Push to your own repo/branch...
  3. X

    Defensive programming

    While looking through the code and trying to give methods concrete contracts in javadoc I noticed that there are a lot of missing checks. For example. When starting a GameEngine you give an InitialState. After looking at the code I noticed that an if this state is null, it will result in a crash...
  4. X

    Performance analysis of mesh rendering

    I have done some performance testing on the rendering of opaque meshes. This rendering is causes 1/2 of the lag when using the railgun. The other half is physics calculations. Since physics are hard to optimize I took a look at the rendering. The code I looked at is mainly located in...
  5. X

    Greetings

    Greetings terasology dev team. Here is my info: Name: XanHou/Rednax (both nicknames) Social: GitHub name: XanHou I'm not any social media, so not much to mention here. From: Netherlands Skills / Tools: Java, OpenGL, C++ (a little), LWJGL. Found via: Google I think. Just looking for voxel...
Top