We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenTK4 https://opentk.net/learn/chapter1/2-hello-triangle.html?tabs=onload-opentk4%2Conrender-opentk4%2Cresize-opentk4#some-new-functions What in sample is
protected override void OnFramebufferResize(ResizeEventArgs e) { base.OnFramebufferResize(e); GL.Viewport(0, 0, e.Width, e.Height); }
but the parameter in source is
protected virtual void OnFramebufferResize(FramebufferResizeEventArgs e) { Action<FramebufferResizeEventArgs> framebufferResize = this.FramebufferResize; if (framebufferResize == null) return; framebufferResize(e); }
The text was updated successfully, but these errors were encountered:
Thanks for the report! Will fix when I get to fixing website stuff.
Sorry, something went wrong.
I'd like to keep this open until I've actually fixed the issue :)
Thanks for saving my time.
No branches or pull requests
OpenTK4
https://opentk.net/learn/chapter1/2-hello-triangle.html?tabs=onload-opentk4%2Conrender-opentk4%2Cresize-opentk4#some-new-functions
What in sample is
but the parameter in source is
The text was updated successfully, but these errors were encountered: