I'm running multiple games in OpenTK within 1 application.
I'm creating new OpenTK instances for each game, but when you exit it will exit the game and then return to a menu, and dispose of the game instance.
The problem I'm facing is that memory is still accumulated from the previous game that I had exited, and I feel this is due to the textures and everything still loaded into the RAM.
How do I clear this out? Thanks!