hi to everybody,
I have an application that use the Java full screen mode, everything it works but I have a doubt with the method “dispose()” of the class BufferStrategy.
If I call dispose() the application remains always in full screen? I have tried and it seems that remains “accelerated” however I want to be sure, thanks to all those that will answer
Calling dispose() on a BufferStrategy will only dispose that object, not the whole screen (which is controlled by your Window and Graphics Device objects)
Thanks for the answer