Closed surban closed 11 months ago
The recent addition of debug callback functions has caused the native Context to become !Send and !Sync.
Context
!Send
!Sync
This is problematic since it is legal to pass an OpenGL context from one thread to another. Therefore Context should stay Send + Sync.
Send
Sync
The recent addition of debug callback functions has caused the native
Context
to become!Send
and!Sync
.This is problematic since it is legal to pass an OpenGL context from one thread to another. Therefore
Context
should staySend
+Sync
.