Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for eglconf (0.08 sec)

  1. 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)
  2. docs/contribute/code_of_conduct.md

    [codeofconduct_at]: mailto:******@****.***
    [twitter_coc]: https://github.com/twitter/code-of-conduct/blob/master/code-of-conduct.md
    [ubuntu_coc]: https://ubuntu.com/community/code-of-conduct
    [gdc_coc]: https://www.gdconf.com/code-of-conduct
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. 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)
Back to top