예제 #1
0
func ScreenRect() (image.Rectangle, error) {
	displayID := C.CGMainDisplayID()
	width := int(C.CGDisplayPixelsWide(displayID))
	height := int(C.CGDisplayPixelsHigh(displayID))
	return image.Rect(0, 0, width, height), nil
}
예제 #2
0
파일: input.go 프로젝트: sreejithr/GyroJoy
func GetDisplayHeight() int {
	return int(C.CGDisplayPixelsHigh(C.CGMainDisplayID()))
}