We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The current samples are not handling correctly the resizing of the window :
Current code : GL.Viewport(0, 0, Size.X, Size.Y);
Proposal for fix : Vector2i fb = this.FramebufferSize; GL.Viewport(0, 0, fb.X, fb.Y);
Activity