You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Props.SetFramebufferSize mentions a vague window owner:
// SetFramebufferSize sets the size of the framebuffer in pixels. Each value is
// clamped to at least a value of 1.
//
// Only the window owner should ever set the framebuffer size.
It should instead read:
// SetFramebufferSize sets the size of the framebuffer in pixels. Each value is
// clamped to at least a value of 1.
//
// Only the Window implementation should set the framebuffer size: clients who are just
// utilizing the existing implementations defined in this package should not invoke this
// method.
The text was updated successfully, but these errors were encountered:
Issue by slimsag
Saturday Nov 08, 2014 at 16:28 GMT
Originally opened as azul3d-legacy/gfx#42
Props.SetFramebufferSize
mentions a vague window owner:It should instead read:
The text was updated successfully, but these errors were encountered: