Using Monogame OpenGL with VS 2019, and I've applied the following code as per the usual to set the constraints of the size.
graphics = new GraphicsDeviceManager(this);
graphics.PreferredBackBufferWidth = 1280;
graphics.PreferredBackBufferHeight = 720;
I thought this was not working and have been scouring the net for a while trying to solve the problem, but every solution I found told me that this was the correct way to get what I wanted.
I then tested it but using the buffer width/height to set new Vector2's on drawn objects, and they appear offscreen, so it is not that it isn't working, it is that the debug window that is displaying is not resizing properly to show the entirety of the new window. I'm sure it's something simple here, but what am i missing? How can I get the window to show the entirety of the graphics device?