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
In 3.2, CocoaWindow returned uintptr but in 3.3, this returns unsafe.Poitner. As unsafe.Pointer means a pointer that GC can collect, uintptr should be more natural.
@pchampio What do you think? Is there a strong reason to use unsafe.Pointer here?
The text was updated successfully, but these errors were encountered:
glfw/v3.3/glfw/native_darwin.go
Line 29 in e5ec435
In 3.2,
CocoaWindow
returneduintptr
but in 3.3, this returnsunsafe.Poitner
. Asunsafe.Pointer
means a pointer that GC can collect,uintptr
should be more natural.@pchampio What do you think? Is there a strong reason to use
unsafe.Pointer
here?The text was updated successfully, but these errors were encountered: