OpenGL flickering on resize

[OpenGL flickering on Vimeo](https://Here’s a video showing the flickering)

I have been working off of the OpenGL implementation from Vital but it seems that I have a bug because I am getting flickering whenever I resize my window.

any suggestions on how to debug an issue like this? I’m not particularly good with OpenGL yet

Fixed flickering by adding empty resized() function to my MainWindow class . Cheers!

I lied that just stopped the setBounds from getting called. which meant it just didn’t resize the gui objects.

open_gl_context_.setComponentPaintingEnabled(true); also fixes the flickering and has proper resizing. I guess this implies there is something I need to do with calling paint?