RandyGaul/qu3e

Is it possible to set up without ImGUI?

MajickTek opened this issue · 6 comments

Can a small demo be provided in pure free glut or glfw or something? like just pressing a key to add a cube to the scene. In theory it should be simple, but I can't figure it out.

Or at least piping q3Render to an image using stb_image.h

You can delete imgui pretty easily.

care to elaborate?

if you can't now that's fine, over here it is like 10:00 PM ;)

Do you want to remove the imgui UI? It’s fairly easy to remove it. I can point you to the lines of code to remove later on this evening if that helps. 7PM for me right now :)

Remove imgui function calls in this function: https://github.com/RandyGaul/qu3e/blob/master/demo/Demo.cpp#L371-L406

Like these ones:
https://github.com/RandyGaul/qu3e/blob/master/demo/Demo.cpp#L403
https://github.com/RandyGaul/qu3e/blob/master/demo/Demo.cpp#L378

But make sure to remove all of them, not just the two examples I linked here.

And that's it!

Oh. Thanks!