- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for eglconf (0.04 sec)
-
src/cmd/cgo/doc.go
The EGLDisplay case was introduced in Go 1.12. Use the egl rewrite to auto-update code from Go 1.11 and earlier: go tool fix -r egl <pkg> The EGLConfig case was introduced in Go 1.15. Use the eglconf rewrite to auto-update code from Go 1.14 and earlier: go tool fix -r eglconf <pkg> # Using cgo directly Usage: go tool cgo [cgo options] [-- compiler options] gofiles...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Oct 01 22:52:54 UTC 2024 - 44K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
return true } } } } } } return false } func (c *typeConv) badEGLType(dt *dwarf.TypedefType) bool { if dt.Name != "EGLDisplay" && dt.Name != "EGLConfig" { return false } // Check that the typedef is "typedef void *<name>". if ptr, ok := dt.Type.(*dwarf.PtrType); ok { if _, ok := ptr.Type.(*dwarf.VoidType); ok { return true } }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0)