SilverTiger Development

Java Game Development

LWJGL3 Tutorial - Batch Rendering

| Comments

The next part of the LWJGL3 Tutorial is out! In this part we are looking into batch rendering.
With batch rendering you can dynamically fill your buffer, but most important you will have less state changes, so you get more performance out of it. Batching is great, even if you want to use legacy OpenGL with immediate mode.

The tutorial isn’t as long as the last parts, so here’s the list what it contains:

  • Initializing a batch
    • Different usage hints for buffers
  • Filling and drawing with a batch
    • Buffer mapping

Feel free to comment if there are issues or something.
In the next part we will take a look into input handling!

Comments