Cat

  • 0 Posts
  • 38 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle



















  • By “rendering” I mean when you interact with OpenGL, the GPU, etc - at least in my engine (lwjgl/libgdx), it’s expected to be on the main thread. From what I understand too when you get into GPU land everything is already kinda-asynchronous on the driver side - it’s only when you call flush() that it actually blocks your thread - which makes it difficult to profile some things.

    But I am still a newb at all of this! I’d love to hear your experiences!!