Merge remote-tracking branch 'origin/updated-c-sources' into updated-c-sources

# Conflicts:
#	raylib/platform_desktop.go
This commit is contained in:
Juan Medina 2020-09-02 14:43:23 +01:00
commit 63187d19a5

View file

@ -105,11 +105,6 @@ func IsWindowFocused() bool {
return v
}
// DecorateWindow - Decorate the window (only PLATFORM_DESKTOP)
func DecorateWindow() {
C.DecorateWindow()
}
// UndecorateWindow - Undecorate the window (only PLATFORM_DESKTOP)
func UndecorateWindow() {
C.UndecorateWindow()
@ -125,6 +120,11 @@ func RestoreWindow() {
C.RestoreWindow()
}
// DecorateWindow - Decorate the window (only PLATFORM_DESKTOP)
func DecorateWindow() {
C.DecorateWindow()
}
// GetMonitorRefreshRate - Get primary monitor refresh rate
func GetMonitorRefreshRate(monitor int) int {
cmonitor := (C.int)(monitor)