Merge remote-tracking branch 'origin/updated-c-sources' into updated-c-sources
# Conflicts: # raylib/platform_desktop.go
This commit is contained in:
commit
63187d19a5
1 changed files with 5 additions and 5 deletions
|
@ -105,11 +105,6 @@ func IsWindowFocused() bool {
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
// DecorateWindow - Decorate the window (only PLATFORM_DESKTOP)
|
|
||||||
func DecorateWindow() {
|
|
||||||
C.DecorateWindow()
|
|
||||||
}
|
|
||||||
|
|
||||||
// UndecorateWindow - Undecorate the window (only PLATFORM_DESKTOP)
|
// UndecorateWindow - Undecorate the window (only PLATFORM_DESKTOP)
|
||||||
func UndecorateWindow() {
|
func UndecorateWindow() {
|
||||||
C.UndecorateWindow()
|
C.UndecorateWindow()
|
||||||
|
@ -125,6 +120,11 @@ func RestoreWindow() {
|
||||||
C.RestoreWindow()
|
C.RestoreWindow()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DecorateWindow - Decorate the window (only PLATFORM_DESKTOP)
|
||||||
|
func DecorateWindow() {
|
||||||
|
C.DecorateWindow()
|
||||||
|
}
|
||||||
|
|
||||||
// GetMonitorRefreshRate - Get primary monitor refresh rate
|
// GetMonitorRefreshRate - Get primary monitor refresh rate
|
||||||
func GetMonitorRefreshRate(monitor int) int {
|
func GetMonitorRefreshRate(monitor int) int {
|
||||||
cmonitor := (C.int)(monitor)
|
cmonitor := (C.int)(monitor)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue