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
It would be very useful for documentation purposes if flag enums had types.
Currently, the signature for CreateWindow is:
func CreateWindow(title string, x, y, w, h int32, flags uint32) (*Window, error)
...where flags is just plain uint32. If this had a corresponding type WindowFlags uint32, I could easily navigate from the CreateWindow docs to the WindowFlags docs in godoc.org.
If there's no objection, I think I can manage making a PR.
The text was updated successfully, but these errors were encountered:
It would be very useful for documentation purposes if flag enums had types.
Currently, the signature for
CreateWindow
is:...where flags is just plain
uint32
. If this had a correspondingtype WindowFlags uint32
, I could easily navigate from theCreateWindow
docs to theWindowFlags
docs in godoc.org.If there's no objection, I think I can manage making a PR.
The text was updated successfully, but these errors were encountered: