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
df08c6f made bind() mutably borrow the backend, making it impossible to get backend.buffer_age() while it is bound. However, when the backend is not bound, buffer_age() returns None. So effectively you can't use the buffer age on winit currently.
The text was updated successfully, but these errors were encountered:
If I'm not mistaken, GlesTarget unbinds on Drop, and it is one of the things borrowing the backend from bind(). So I'm not sure it's possible
No, I am pretty sure it doesn't. It destroys framebuffer objects, but it doesn't call unbind to save instructions, if the user just binds the same framebuffer again next cycle.
df08c6f made
bind()
mutably borrow the backend, making it impossible to getbackend.buffer_age()
while it is bound. However, when the backend is not bound,buffer_age()
returnsNone
. So effectively you can't use the buffer age on winit currently.The text was updated successfully, but these errors were encountered: